mirror of
https://github.com/rust-lang/cargo
synced 2024-11-05 18:50:39 +00:00
29 lines
764 B
TOML
29 lines
764 B
TOML
[package]
|
|
name = "cargo-util"
|
|
version = "0.1.0"
|
|
authors = ["The Cargo Project Developers"]
|
|
edition = "2018"
|
|
license = "MIT OR Apache-2.0"
|
|
homepage = "https://github.com/rust-lang/cargo"
|
|
repository = "https://github.com/rust-lang/cargo"
|
|
description = "Miscellaneous support code used by Cargo."
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.34"
|
|
crypto-hash = "0.3.1"
|
|
filetime = "0.2.9"
|
|
hex = "0.4.2"
|
|
jobserver = "0.1.21"
|
|
libc = "0.2.88"
|
|
log = "0.4.6"
|
|
same-file = "1.0.6"
|
|
shell-escape = "0.1.4"
|
|
tempfile = "3.1.0"
|
|
walkdir = "2.3.1"
|
|
|
|
[target.'cfg(target_os = "macos")'.dependencies]
|
|
core-foundation = { version = "0.9.0", features = ["mac_os_10_7_support"] }
|
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
miow = "0.3.6"
|
|
winapi = { version = "0.3.9", features = ["consoleapi", "minwindef"] }
|