/** * **kaspa** - Kaspa full-node reference implementation and related libraries in the Rust programming language * * @domain `github.com/kaspanet/rusty-kaspa` * @programs `kaspad`, `kaspa-cli` * @version `1.0.1` (16 versions available) * @versions From newest version to oldest. * * @install `launchpad install github.com/kaspanet/rusty-kaspa` * @dependencies `linux:openssl.org^1.1` (includes OS-specific dependencies with `os:package` format) * @buildDependencies `protobuf.dev`, `abseil.io@^20250127`, `curl.se` - required only when building from source * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * const pkg = pantry.githubcomkaspanetrustykaspa * console.log(pkg.name) // "kaspa" * console.log(pkg.description) // "Kaspa full-node reference implementation and re..." * console.log(pkg.programs) // ["kaspad", "kaspa-cli"] * console.log(pkg.versions[0]) // "1.0.1" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/github-com/kaspanet/rusty-kaspa.md * @see https://ts-pkgx.netlify.app/usage */ export declare const rustykaspaPackage: { /** * The display name of this package. */ name: 'kaspa'; /** * The canonical domain name for this package. */ domain: 'github.com/kaspanet/rusty-kaspa'; /** * Brief description of what this package does. */ description: 'Kaspa full-node reference implementation and related libraries in the Rust programming language'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/github.com/kaspanet/rusty-kaspa/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/kaspanet/rusty-kaspa'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install github.com/kaspanet/rusty-kaspa'; pkgxInstallCommand: 'sh <(curl https://pkgx.sh) +github.com/kaspanet/rusty-kaspa -- $SHELL -i'; launchpadInstallCommand: 'launchpad install github.com/kaspanet/rusty-kaspa'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['kaspad', 'kaspa-cli']; companions: readonly []; /** * Runtime dependencies for this package. * These are required when running the package. * OS-specific dependencies are prefixed with `os:` (e.g., `linux:freetype.org`). */ dependencies: readonly ['linux:openssl.org^1.1']; /** * Build dependencies for this package. * These are only required when building the package from source. */ buildDependencies: readonly ['protobuf.dev', 'abseil.io@^20250127', 'curl.se']; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.0.1', '1.0.0', '0.17.2', '0.17.1', '0.17.0', '0.16.1', '0.16.0', '0.15.2', '0.15.1', '0.14.1', '0.13.6', '0.13.4', '0.13.3', '0.13.2', '0.13.0', '0.1.7']; aliases: readonly [] }; export type RustykaspaPackage = typeof rustykaspaPackage