mirror of
https://github.com/rust-lang/cargo.git
synced 2025-09-25 11:14:46 +00:00

The previous libgit2-sys release forgot to include the fix of libgit2 1.4.2. https://github.com/rust-lang/git2-rs/pull/820#issuecomment-1064284814 That might cause problems when people don't have "Git for Windows" installed on their machines.
29 lines
643 B
TOML
29 lines
643 B
TOML
[package]
|
|
name = "cargo-test-support"
|
|
version = "0.1.0"
|
|
license = "MIT OR Apache-2.0"
|
|
edition = "2021"
|
|
|
|
[lib]
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.34"
|
|
cargo-test-macro = { path = "../cargo-test-macro" }
|
|
cargo-util = { path = "../cargo-util" }
|
|
filetime = "0.2"
|
|
flate2 = { version = "1.0", default-features = false, features = ["zlib"] }
|
|
git2 = "0.14.2"
|
|
glob = "0.3"
|
|
itertools = "0.10.0"
|
|
lazy_static = "1.0"
|
|
remove_dir_all = "0.5"
|
|
serde_json = "1.0"
|
|
tar = { version = "0.4.18", default-features = false }
|
|
termcolor = "1.1.2"
|
|
toml_edit = { version = "0.13.0", features = ["serde", "easy"] }
|
|
url = "2.2.2"
|
|
|
|
[features]
|
|
deny-warnings = []
|