]> git.proxmox.com Git - cargo.git/blob - crates/cargo-util/Cargo.toml
Bump cargo-util version.
[cargo.git] / crates / cargo-util / Cargo.toml
1 [package]
2 name = "cargo-util"
3 version = "0.2.1"
4 edition = "2021"
5 license = "MIT OR Apache-2.0"
6 homepage = "https://github.com/rust-lang/cargo"
7 repository = "https://github.com/rust-lang/cargo"
8 description = "Miscellaneous support code used by Cargo."
9
10 [dependencies]
11 anyhow = "1.0.34"
12 crypto-hash = "0.3.1"
13 filetime = "0.2.9"
14 hex = "0.4.2"
15 jobserver = "0.1.21"
16 libc = "0.2.88"
17 log = "0.4.6"
18 same-file = "1.0.6"
19 shell-escape = "0.1.4"
20 tempfile = "3.1.0"
21 walkdir = "2.3.1"
22
23 [target.'cfg(target_os = "macos")'.dependencies]
24 core-foundation = { version = "0.9.0", features = ["mac_os_10_7_support"] }
25
26 [target.'cfg(windows)'.dependencies]
27 miow = "0.3.6"
28 winapi = { version = "0.3.9", features = ["consoleapi", "minwindef"] }