cargo/Cargo.toml

259 lines
7.4 KiB
TOML
Raw Normal View History

[workspace]
resolver = "2"
members = [
"crates/*",
"credential/*",
"benches/benchsuite",
"benches/capture",
]
exclude = [
"target/", # exclude bench testing
]
[workspace.package]
2024-03-22 18:11:01 +00:00
rust-version = "1.75" # MSRV:3
edition = "2021"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/rust-lang/cargo"
repository = "https://github.com/rust-lang/cargo"
2023-04-28 14:56:09 +00:00
[workspace.dependencies]
annotate-snippets = "0.11.1"
2024-03-01 02:50:21 +00:00
anstream = "0.6.13"
2024-02-05 18:07:44 +00:00
anstyle = "1.0.6"
2024-04-02 16:50:14 +00:00
anyhow = "1.0.81"
base64 = "0.22.0"
2023-09-01 07:44:26 +00:00
bytesize = "1.3"
2023-04-28 14:56:09 +00:00
cargo = { path = "" }
cargo-credential = { version = "0.4.2", path = "credential/cargo-credential" }
cargo-credential-libsecret = { version = "0.4.2", path = "credential/cargo-credential-libsecret" }
cargo-credential-macos-keychain = { version = "0.4.2", path = "credential/cargo-credential-macos-keychain" }
cargo-credential-wincred = { version = "0.4.2", path = "credential/cargo-credential-wincred" }
cargo-platform = { path = "crates/cargo-platform", version = "0.1.5" }
cargo-test-macro = { version = "0.2.0", path = "crates/cargo-test-macro" }
cargo-test-support = { version = "0.2.0", path = "crates/cargo-test-support" }
cargo-util = { version = "0.2.9", path = "crates/cargo-util" }
cargo-util-schemas = { version = "0.3.0", path = "crates/cargo-util-schemas" }
2023-11-01 00:12:16 +00:00
cargo_metadata = "0.18.1"
2024-04-02 16:50:14 +00:00
clap = "4.5.4"
2023-10-01 19:54:31 +00:00
color-print = "0.3.5"
2023-12-01 17:33:18 +00:00
core-foundation = { version = "0.9.4", features = ["mac_os_10_7_support"] }
2024-01-09 17:00:51 +00:00
crates-io = { version = "0.40.0", path = "crates/crates-io" }
2023-07-09 22:59:30 +00:00
criterion = { version = "0.5.1", features = ["html_reports"] }
2024-03-01 02:50:21 +00:00
curl = "0.4.46"
curl-sys = "0.4.72"
2024-01-02 10:21:24 +00:00
filetime = "0.2.23"
2023-11-01 00:12:16 +00:00
flate2 = { version = "1.0.28", default-features = false, features = ["zlib"] }
2024-04-02 16:50:14 +00:00
git2 = "0.18.3"
2023-08-28 20:17:01 +00:00
git2-curl = "0.19.0"
gix = { version = "0.62.0", default-features = false, features = ["blocking-http-transport-curl", "progress-tree", "revision", "parallel", "dirwalk"] }
2023-08-01 02:18:22 +00:00
glob = "0.3.1"
2024-04-02 16:50:14 +00:00
handlebars = { version = "5.1.2", features = ["dir_source"] }
2023-08-01 02:18:22 +00:00
hex = "0.4.3"
hmac = "0.12.1"
2024-01-02 10:21:24 +00:00
home = "0.5.9"
http-auth = { version = "0.1.9", default-features = false }
2023-08-01 02:18:22 +00:00
humantime = "2.1.0"
2024-02-05 18:07:44 +00:00
ignore = "0.4.22"
2023-08-01 02:18:22 +00:00
im-rc = "15.1.0"
indexmap = "2"
2024-02-05 18:07:44 +00:00
itertools = "0.12.1"
2024-02-08 13:32:07 +00:00
jobserver = "0.1.28"
2023-08-01 02:18:22 +00:00
lazycell = "1.3.0"
2024-02-05 18:07:44 +00:00
libc = "0.2.153"
2024-02-07 04:11:27 +00:00
libgit2-sys = "0.16.2"
2024-04-02 16:50:14 +00:00
libloading = "0.8.3"
memchr = "2.7.2"
2023-08-05 21:27:40 +00:00
miow = "0.6.0"
opener = "0.7.0"
openssl = "0.10.57"
2024-04-10 17:48:46 +00:00
openssl-sys = "=0.9.92" # See rust-lang/cargo#13546 and openssl/openssl#23376 for pinning
2024-04-02 16:50:14 +00:00
os_info = "3.8.2"
2024-01-02 10:21:24 +00:00
pasetors = { version = "0.6.8", features = ["v3", "paserk", "std", "serde"] }
pathdiff = "0.2"
2023-08-01 02:18:22 +00:00
percent-encoding = "2.3"
2024-03-01 02:50:21 +00:00
pkg-config = "0.3.30"
2023-12-01 17:33:18 +00:00
proptest = "1.4.0"
2024-04-02 16:50:14 +00:00
pulldown-cmark = { version = "0.10.2", default-features = false, features = ["html"] }
2023-03-23 12:33:20 +00:00
rand = "0.8.5"
2024-04-02 16:50:14 +00:00
regex = "1.10.4"
rusqlite = { version = "0.31.0", features = ["bundled"] }
rustfix = { version = "0.8.2", path = "crates/rustfix" }
2023-04-28 14:56:09 +00:00
same-file = "1.0.6"
2024-04-02 16:50:14 +00:00
security-framework = "2.10.0"
2024-03-01 02:50:21 +00:00
semver = { version = "1.0.22", features = ["serde"] }
serde = "1.0.197"
2024-02-05 18:07:44 +00:00
serde-untagged = "0.1.5"
serde-value = "0.7.0"
2024-02-05 18:07:44 +00:00
serde_ignored = "0.1.10"
2024-04-02 16:50:14 +00:00
serde_json = "1.0.115"
2023-10-01 19:54:31 +00:00
sha1 = "0.10.6"
sha2 = "0.10.8"
2023-08-01 02:18:22 +00:00
shell-escape = "0.1.5"
supports-hyperlinks = "3.0.0"
2024-04-02 16:50:14 +00:00
snapbox = { version = "0.5.9", features = ["diff", "path", "term-svg"] }
2023-09-01 07:44:26 +00:00
tar = { version = "0.4.40", default-features = false }
2024-03-01 02:50:21 +00:00
tempfile = "3.10.1"
2024-04-02 16:50:14 +00:00
thiserror = "1.0.58"
2023-06-27 16:26:27 +00:00
time = { version = "0.3", features = ["parsing", "formatting", "serde"] }
2024-04-02 16:50:14 +00:00
toml = "0.8.12"
2024-03-22 02:43:35 +00:00
toml_edit = { version = "0.22.9", features = ["serde"] }
2024-02-05 18:07:44 +00:00
tracing = "0.1.40" # be compatible with rustc_log: https://github.com/rust-lang/rust/blob/e51e98dde6a/compiler/rustc_log/Cargo.toml#L9
2024-04-02 16:50:14 +00:00
tracing-chrome = "0.7.2"
2023-12-01 17:33:18 +00:00
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
2023-09-01 07:44:26 +00:00
unicase = "2.7.0"
2023-10-01 19:54:31 +00:00
unicode-width = "0.1.11"
2023-08-01 02:18:22 +00:00
unicode-xid = "0.2.4"
2023-12-01 17:33:18 +00:00
url = "2.5.0"
2023-08-01 02:18:22 +00:00
varisat = "0.2.2"
2024-04-02 16:50:14 +00:00
walkdir = "2.5.0"
windows-sys = "0.52"
2023-04-28 14:56:09 +00:00
[workspace.lints.rust]
rust_2018_idioms = "warn" # TODO: could this be removed?
[workspace.lints.rustdoc]
private_intra_doc_links = "allow"
[workspace.lints.clippy]
all = { level = "allow", priority = -1 }
dbg_macro = "warn"
disallowed_methods = "warn"
print_stderr = "warn"
print_stdout = "warn"
self_named_module_files = "warn"
2023-04-28 14:56:09 +00:00
[package]
name = "cargo"
2024-03-18 15:44:35 +00:00
version = "0.80.0"
edition.workspace = true
license.workspace = true
2024-03-22 18:11:01 +00:00
rust-version = "1.77" # MSRV:1
homepage = "https://doc.rust-lang.org/cargo/index.html"
repository.workspace = true
2023-04-28 14:56:09 +00:00
documentation = "https://docs.rs/cargo"
description = """
Cargo, a package manager for Rust.
"""
[lib]
name = "cargo"
path = "src/cargo/lib.rs"
[dependencies]
annotate-snippets.workspace = true
anstream.workspace = true
anstyle.workspace = true
2023-04-28 14:56:09 +00:00
anyhow.workspace = true
base64.workspace = true
bytesize.workspace = true
2023-06-27 16:26:27 +00:00
cargo-credential.workspace = true
cargo-platform.workspace = true
cargo-util-schemas.workspace = true
2023-04-28 14:56:09 +00:00
cargo-util.workspace = true
clap = { workspace = true, features = ["wrap_help"] }
color-print.workspace = true
2023-04-28 14:56:09 +00:00
crates-io.workspace = true
curl = { workspace = true, features = ["http2"] }
curl-sys.workspace = true
filetime.workspace = true
flate2.workspace = true
git2.workspace = true
git2-curl.workspace = true
gix.workspace = true
glob.workspace = true
hex.workspace = true
hmac.workspace = true
home.workspace = true
http-auth.workspace = true
humantime.workspace = true
ignore.workspace = true
im-rc.workspace = true
indexmap.workspace = true
itertools.workspace = true
jobserver.workspace = true
lazycell.workspace = true
libc.workspace = true
libgit2-sys.workspace = true
memchr.workspace = true
opener.workspace = true
os_info.workspace = true
pasetors.workspace = true
pathdiff.workspace = true
rand.workspace = true
regex.workspace = true
rusqlite.workspace = true
2023-04-28 14:56:09 +00:00
rustfix.workspace = true
semver.workspace = true
serde = { workspace = true, features = ["derive"] }
serde-untagged.workspace = true
2023-04-28 14:56:09 +00:00
serde_ignored.workspace = true
serde_json = { workspace = true, features = ["raw_value"] }
sha1.workspace = true
shell-escape.workspace = true
supports-hyperlinks.workspace = true
2023-04-28 14:56:09 +00:00
tar.workspace = true
tempfile.workspace = true
time.workspace = true
toml.workspace = true
toml_edit.workspace = true
2023-08-05 08:31:50 +00:00
tracing.workspace = true
2023-08-05 08:51:03 +00:00
tracing-subscriber.workspace = true
unicase.workspace = true
2023-04-28 14:56:09 +00:00
unicode-width.workspace = true
url.workspace = true
walkdir.workspace = true
supports-unicode = "3.0.0"
[target.'cfg(target_has_atomic = "64")'.dependencies]
tracing-chrome.workspace = true
[target.'cfg(target_os = "linux")'.dependencies]
cargo-credential-libsecret.workspace = true
[target.'cfg(target_os = "macos")'.dependencies]
cargo-credential-macos-keychain.workspace = true
[target.'cfg(not(windows))'.dependencies]
2023-04-28 14:56:09 +00:00
openssl = { workspace = true, optional = true }
[target.'cfg(windows)'.dependencies]
cargo-credential-wincred.workspace = true
2023-01-31 10:02:57 +00:00
[target.'cfg(windows)'.dependencies.windows-sys]
2023-04-28 14:56:09 +00:00
workspace = true
2018-01-03 19:25:28 +00:00
features = [
2023-01-31 10:02:57 +00:00
"Win32_Foundation",
"Win32_Security",
2023-01-31 10:02:57 +00:00
"Win32_Storage_FileSystem",
"Win32_System_IO",
"Win32_System_Console",
2023-01-31 10:02:57 +00:00
"Win32_System_JobObjects",
"Win32_System_Threading",
2018-01-03 19:25:28 +00:00
]
[dev-dependencies]
annotate-snippets = { workspace = true, features = ["testing-colors"] }
2023-04-28 14:56:09 +00:00
cargo-test-macro.workspace = true
cargo-test-support.workspace = true
same-file.workspace = true
snapbox.workspace = true
[build-dependencies]
2023-04-28 14:56:09 +00:00
flate2.workspace = true
tar.workspace = true
2014-07-16 00:51:49 +00:00
[[bin]]
name = "cargo"
test = false
2014-08-14 21:54:56 +00:00
doc = false
[features]
2019-10-01 07:39:57 +00:00
vendored-openssl = ["openssl/vendored"]
vendored-libgit2 = ["libgit2-sys/vendored"]
# This is primarily used by rust-lang/rust distributing cargo the executable.
all-static = ['vendored-openssl', 'curl/static-curl', 'curl/force-system-lib-on-osx', 'vendored-libgit2']
[lints]
workspace = true