• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1[package]
2name = "crate_tool"
3version = "0.1.0"
4edition = "2021"
5
6# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
7
8[dependencies]
9anyhow = "1"
10cargo_metadata = "0.19"
11cfg-expr = "0.17"
12chrono = "0.4"
13clap = { version = "4.4.6", features = ["derive"] }
14crates-index = "3.2.0"
15glob = "0.3"
16itertools = "0.11"
17protobuf = "3"
18semver = "1"
19# TODO: Unpin once https://github.com/serde-rs/serde/issues/2844 is resolved.
20serde = { version = "=1.0.210", features = ["derive"] }
21serde_json = "1"
22spdx = "0.10"
23ureq = "3"
24thiserror = "1"
25walkdir = "2"
26checksum = { path = "../checksum" }
27crate_config = { path = "../crate_config" }
28crates_io_util = { path = "../crates_io_util" }
29google_metadata = { path = "../google_metadata"}
30license_checker = { path = "../license_checker" }
31name_and_version = { path = "../name_and_version" }
32repo_config = { path = "../repo_config" }
33rooted_path = { path = "../rooted_path" }
34test_mapping = { path = "../test_mapping" }
35
36[build-dependencies]
37protobuf-codegen = "3"
38protobuf-parse = "3"
39
40[dev-dependencies]
41tempfile = "3"
42