• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..20-Jan-2022-

src/H20-Jan-2022-1,120617

tests/H20-Jan-2022-744647

.cargo-checksum.jsonH A D03-May-202289 11

Cargo.tomlH A D20-Jan-20221.1 KiB3934

LICENSE-MITH A D20-Jan-20221,023 2421

README.mdH A D20-Jan-2022745 138

README.md

1# cargo_metadata
2
3Structured access to the output of `cargo metadata`. Usually used from within a `cargo-*` executable.
4
5Also supports serialization to aid in implementing `--message-format=json`-like
6output generation in `cargo-*` subcommands, since some of the types in what
7`cargo --message-format=json` emits are exactly the same as the ones from `cargo metadata`.
8
9[![Build Status](https://api.travis-ci.org/oli-obk/cargo_metadata.svg?branch=master)](https://travis-ci.org/oli-obk/cargo_metadata)
10[![crates.io](https://img.shields.io/crates/v/cargo_metadata.svg)](https://crates.io/crates/cargo_metadata)
11
12[Documentation](https://docs.rs/cargo_metadata/) - contains examples of use with `std::env::args`, `docopt`, `clap`, and `structopt`.
13