7 unstable releases (3 breaking)

0.6.0 Apr 17, 2024
0.4.2 Feb 20, 2024
0.4.1 Jan 11, 2024
0.3.0 Dec 20, 2023
0.1.0 Oct 28, 2023

#179 in Cargo plugins

Download history 34/week @ 2024-01-11 3/week @ 2024-02-08 119/week @ 2024-02-15 50/week @ 2024-02-22 14/week @ 2024-02-29 14/week @ 2024-03-07 15/week @ 2024-03-14 17/week @ 2024-03-28 8/week @ 2024-04-04 118/week @ 2024-04-11 59/week @ 2024-04-18 6/week @ 2024-04-25

197 downloads per month

MIT license

45KB
900 lines

Cargo Information

This project is a response to issue #948 on the Rust Lang Cargo repository.

asciicast

Description

cargo-info is a tool that provides detailed information about a Rust package. It fetches data from the package's Cargo.toml file and presents it in a user-friendly format.

Features

  • Works with all registries that are compatible with Cargo
  • Fetches and displays basic package information (name, version, owners, etc.)
  • Shows package dependencies and their versions
  • Provides information about package features

Installation

Cargo

To install cargo-info, run the following command:

cargo install cargo-information

or if you want to install the latest version from the main branch:

cargo install cargo-information --git https://github.com/hi-rustin/cargo-information.git

This library depends on OpenSSL. You may need to install OpenSSL on your system before installing cargo-info. Or you can use the vendored-openssl feature to use the vendored version of OpenSSL:

cargo install cargo-information --features vendored-openssl

Arch Linux

cargo-info can be installed from the AUR using an AUR helper. For example:

paru -S cargo-information

Usage

After installation, you can use the cargo info command followed by the package name to get information about a package:

$ cargo info --help
Display info about a package in the registry

Usage: cargo info [OPTIONS] <SPEC>

Options:
      --index <INDEX>        Registry index URL to search packages in
      --registry <REGISTRY>  Registry to search packages in
  -v, --verbose...           Use verbose output (-vv very verbose/build.rs output)
  -q, --quiet                Do not print cargo log messages
      --color <WHEN>         Coloring: auto, always, never
      --config <KEY=VALUE>   Override a configuration value
  -Z <FLAG>                  Unstable (nightly-only) flags to Cargo, see 'cargo -Z help' for details
  -h, --help                 Print help

Package Selection:
  <SPEC>  Package to inspect

Manifest Options:
      --frozen   Require Cargo.lock and cache are up to date
      --locked   Require Cargo.lock is up to date
      --offline  Run without accessing the network

Run `cargo help info` for more detailed information.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

License

This project is licensed under the MIT License.

Dependencies

~92MB
~2M SLoC