mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-06 13:45:20 +00:00
22 lines
516 B
Plaintext
22 lines
516 B
Plaintext
---
|
|
syntax: markdown
|
|
tags: [tldr, common]
|
|
source: https://github.com/tldr-pages/tldr.git
|
|
---
|
|
# cargo info
|
|
|
|
> Display information about a Rust package.
|
|
> More information: <https://doc.rust-lang.org/cargo/commands/cargo-info.html>.
|
|
|
|
- Display information about a package on <https://crates.io>:
|
|
|
|
`cargo info {{package}}`
|
|
|
|
- Display information about a specific version of a package:
|
|
|
|
`cargo info {{package}}@{{version}}`
|
|
|
|
- Display additional information about a package:
|
|
|
|
`cargo info {{[-v|--verbose]}} {{package}}`
|