/** * **drill** - Drill is an HTTP load testing application written in Rust * * @domain `crates.io/drill` * @programs `drill` * @version `0.8.3` (1 versions available) * @versions From newest version to oldest. * * @install `launchpad install crates.io/drill` * @dependencies `openssl.org^1.1` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.cratesiodrill * console.log(pkg.name) // "drill" * console.log(pkg.description) // "Drill is an HTTP load testing application writt..." * console.log(pkg.programs) // ["drill"] * console.log(pkg.versions[0]) // "0.8.3" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/crates-io/drill.md * @see https://ts-pkgx.netlify.app/usage */ export declare const cratesiodrillPackage: { /** * The display name of this package. */ name: 'drill'; /** * The canonical domain name for this package. */ domain: 'crates.io/drill'; /** * Brief description of what this package does. */ description: 'Drill is an HTTP load testing application written in Rust'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/crates.io/drill/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/fcsonline/drill'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install crates.io/drill'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +crates.io/drill -- $SHELL -i'; launchpadInstallCommand: 'launchpad install crates.io/drill'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['drill']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. */ dependencies: readonly ['openssl.org^1.1']; buildDependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['0.8.3']; aliases: readonly [] }; export type CratesiodrillPackage = typeof cratesiodrillPackage