Crosswalk for Rust Package Manager
Cargo is the Rust package manager.
The Cargo.toml file for each package is called its manifest. Cargo uses the metadata in the manifest to download Rust package’s dependencies, compile packages, make distributable packages, and upload them to crates.io, the Rust community’s package registry.
The manifest format is described in the Cargo Book.
| Property | Rust Package Manager |
|---|---|
| codeRepository | package.repository |
| softwareRequirements | dependencies, dev-dependencies, build-dependencies |
| author | package.authors |
| contributor | package.authors |
| keywords | package.keyword |
| license | package.license |
| version | package.version |
| name | package.authors |
| url | package.homepage |
| relatedLink | package.documentation |
| package.authors | |
| name | package.authors |
| maintainer | package.authors |
| issueTracker | badges.is-it-maintained-open-issues |
| readme | package.readme |
New to CodeMeta? The User Guide describes how these terms are used in a
codemeta.json file. There are also various tools such as
the generator that can help!