UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

67 lines 2.5 kB
/** * **crates.io/sqlx-cli** - 🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite. * * @domain `crates.io/sqlx-cli` * @programs `cargo-sqlx`, `sqlx` * @version `0.8.6` (7 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/sqlx-cli` * @dependencies `openssl.org^1.1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiosqlxcli * console.log(pkg.name) // "crates.io/sqlx-cli" * console.log(pkg.description) // "🧰 The Rust SQL Toolkit. An async, pure Rust SQ..." * console.log(pkg.programs) // ["cargo-sqlx", "sqlx"] * console.log(pkg.versions[0]) // "0.8.6" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/sqlx-cli.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiosqlxcliPackage: { /** * The display name of this package. */ name: 'crates.io/sqlx-cli'; /** * The canonical domain name for this package. */ domain: 'crates.io/sqlx-cli'; /** * Brief description of what this package does. */ description: '🧰 The Rust SQL Toolkit. An async, pure Rust SQL crate featuring compile-time checked queries without a DSL. Supports PostgreSQL, MySQL, and SQLite.'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/sqlx-cli/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/sqlx-cli'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['cargo-sqlx', 'sqlx']; companions: readonly []; /** * Required dependencies for this package. * These will be automatically installed. */ dependencies: readonly ['openssl.org^1.1']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.8.6', '0.8.5', '0.8.3', '0.8.2', '0.8.1', '0.8.0', '0.7.4']; aliases: readonly []; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/sqlx-cli -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/sqlx-cli' }; export type CratesiosqlxcliPackage = typeof cratesiosqlxcliPackage