UNPKG

ts-pkgx

Version:

A library & CLI for managing packages

69 lines 2.35 kB
/** * **maturin** - Build and publish crates with pyo3, cffi and uniffi bindings as well as rust binaries as python packages * * @domain `maturin.rs` * @programs `maturin` * @version `1.8.7` (20 versions available) * @versions From newest version to oldest. * * @install `launchpad install maturin` * @aliases `maturin` * * @example * ```typescript * import { pantry } from 'ts-pkgx' * * // Access via alias (recommended) * const pkg = pantry.maturin * // Or access via domain * const samePkg = pantry.maturinrs * console.log(pkg === samePkg) // true * console.log(pkg.name) // "maturin.rs" * console.log(pkg.description) // "Build and publish crates with pyo3, cffi and un..." * console.log(pkg.programs) // ["maturin"] * console.log(pkg.versions[0]) // "1.8.7" (latest) * ``` * * @see https://ts-pkgx.netlify.app/packages/maturin-rs.md * @see https://ts-pkgx.netlify.app/usage */ export declare const maturinPackage: { /** * The display name of this package. */ name: 'maturin.rs'; /** * The canonical domain name for this package. */ domain: 'maturin.rs'; /** * Brief description of what this package does. */ description: 'Build and publish crates with pyo3, cffi and uniffi bindings as well as rust binaries as python packages'; packageYmlUrl: 'https://github.com/pkgxdev/pantry/tree/main/projects/maturin.rs/package.yml'; homepageUrl: ''; githubUrl: 'https://github.com/pkgxdev/pantry/'; /** * Command to install this package using launchpad. * @example launchpad install package-name */ installCommand: 'launchpad install maturin'; /** * Executable programs provided by this package. * These can be run after installation. */ programs: readonly ['maturin']; companions: readonly []; dependencies: readonly []; /** * Available versions from newest to oldest. * @see https://ts-pkgx.netlify.app/usage for installation instructions */ versions: readonly ['1.8.7', '1.8.6', '1.8.5', '1.8.3', '1.8.2', '1.8.1', '1.8.0', '1.7.8', '1.7.7', '1.7.6', '1.7.5', '1.7.4', '1.7.3', '1.7.2', '1.7.1', '1.7.0', '1.6.0', '1.5.1', '1.5.0', '1.4.0']; /** * Alternative names for this package. * You can use any of these names to access the package. */ aliases: readonly ['maturin'] }; export type MaturinPackage = typeof maturinPackage