cargo/crates/cargo-test-support/Cargo.toml

34 lines
802 B
TOML
Raw Normal View History

[package]
name = "cargo-test-support"
version = "0.1.0"
2020-06-20 02:03:25 +00:00
license = "MIT OR Apache-2.0"
edition = "2021"
[lib]
doctest = false
[dependencies]
anyhow = "1.0.34"
cargo-test-macro = { path = "../cargo-test-macro" }
2021-03-20 18:28:38 +00:00
cargo-util = { path = "../cargo-util" }
crates-io = { path = "../crates-io" }
snapbox = { version = "0.3.0", features = ["diff", "path"] }
filetime = "0.2"
flate2 = { version = "1.0", default-features = false, features = ["zlib"] }
git2 = "0.15.0"
glob = "0.3"
itertools = "0.10.0"
lazy_static = "1.0"
remove_dir_all = "0.5"
serde_json = "1.0"
2022-06-01 10:17:15 +00:00
tar = { version = "0.4.38", default-features = false }
termcolor = "1.1.2"
toml_edit = { version = "0.14.3", features = ["serde", "easy", "perf"] }
url = "2.2.2"
2021-10-22 20:30:46 +00:00
[target.'cfg(windows)'.dependencies]
winapi = "0.3"
2021-10-22 20:30:46 +00:00
[features]
deny-warnings = []