File tree Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Expand file tree Collapse file tree 2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 1+ # crates_io_tarball
2+
3+ This package is used to extract metadata from a ` .crate ` file, which is the
4+ format used to distribute Rust libraries on https://crates.io .
5+
6+ The main source of metadata is the ` Cargo.toml ` file, which must be included in
7+ the ` .crate ` file.
8+
9+ A secondary source of metadata is the ` .cargo_vcs_info.json ` file, which
10+ contains information about the version control system that was used at the
11+ time of publishing the crate. Note that this file is optional, and must not be
12+ relied upon for critical information since a malicious user could tamper with
13+ it before publishing the crate.
Original file line number Diff line number Diff line change 1+ #![ doc = include_str ! ( "../README.md" ) ]
2+
13#[ cfg( test) ]
24#[ macro_use]
35extern crate claims;
You can’t perform that action at this time.
0 commit comments