UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

81 lines 3.11 kB
/** * **rust** - Empowering everyone to build reliable and efficient software. * * @domain `rust-lang.org` * @programs `cargo-clippy`, `cargo-fmt`, `clippy-driver`, `rust-analyzer`, `rust-gdb`, ... (+5 more) * @version `1.89.0` (36 versions available) * @versions From newest version to oldest. * * @install `launchpad install rust` * @name `rust` * @dependencies `zlib.net@1` * @companions `rust-lang.org/cargo`, `linux` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access the package * const pkg = pantry.rust * // Or access via domain * const samePkg = pantry.rustlangorg * console.log(pkg === samePkg) // true * console.log(pkg.name) // "rust" * console.log(pkg.description) // "Empowering everyone to build reliable and effic..." * console.log(pkg.programs) // ["cargo-clippy", "cargo-fmt", ...] * console.log(pkg.versions[0]) // "1.89.0" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/rust-lang-org.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rustPackage: { /** * The display name of this package. */ name: 'rust'; /** * The canonical domain name for this package. */ domain: 'rust-lang.org'; /** * Brief description of what this package does. */ description: 'Empowering everyone to build reliable and efficient software.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/rust-lang.org/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install rust'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cargo-clippy', 'cargo-fmt', 'clippy-driver', 'rust-analyzer', 'rust-gdb', 'rust-gdbgui', 'rust-lldb', 'rustc', 'rustdoc', 'rustfmt']; /** * Related packages that work well with this package. * Consider installing these for enhanced functionality. */ companions: readonly ['rust-lang.org/cargo', 'linux']; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['zlib.net@1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.89.0', '1.88.0', '1.87.0', '1.86.0', '1.85.1', '1.85.0', '1.84.1', '1.84.0', '1.83.0', '1.82.0', '1.81.0', '1.80.1', '1.80.0', '1.79.0', '1.78.0', '1.77.2', '1.77.1', '1.77.0', '1.76.0', '1.75.0', '1.74.1', '1.74.0', '1.73.0', '1.72.1', '1.72.0', '1.71.1', '1.71.0', '1.70.0', '1.69.0', '1.68.2', '1.68.1', '1.68.0', '1.67.1', '1.67.0', '1.65.0', '1.64.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +rust-lang.org -- $SHELL -i'; launchpadInstallCommand: 'launchpad install rust' }; export type RustPackage = typeof rustPackage