2023-03-14 11:44:16 +00:00
[ workspace ]
resolver = "2"
members = [
2023-04-19 01:02:21 +00:00
"crates/*" ,
"credential/*" ,
2023-03-14 11:44:16 +00:00
"benches/benchsuite" ,
"benches/capture" ,
]
exclude = [
"target/" , # exclude bench testing
]
2023-07-12 15:21:33 +00:00
[ workspace . package ]
2024-05-03 16:07:50 +00:00
rust-version = "1.76" # MSRV:3
2023-07-12 15:21:33 +00:00
edition = "2021"
2023-07-12 15:26:19 +00:00
license = "MIT OR Apache-2.0"
2023-12-18 20:31:24 +00:00
homepage = "https://github.com/rust-lang/cargo"
repository = "https://github.com/rust-lang/cargo"
2023-07-12 15:21:33 +00:00
2023-04-28 14:56:09 +00:00
[ workspace . dependencies ]
2024-05-01 15:09:07 +00:00
annotate-snippets = "0.11.2"
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-05-01 15:09:07 +00:00
anyhow = "1.0.82"
base64 = "0.22.1"
2023-09-01 07:44:26 +00:00
bytesize = "1.3"
2023-04-28 14:56:09 +00:00
cargo = { path = "" }
2023-11-19 16:22:32 +00:00
cargo-credential = { version = "0.4.2" , path = "credential/cargo-credential" }
2024-06-13 18:38:32 +00:00
cargo-credential-libsecret = { version = "0.4.7" , path = "credential/cargo-credential-libsecret" }
cargo-credential-macos-keychain = { version = "0.4.7" , path = "credential/cargo-credential-macos-keychain" }
cargo-credential-wincred = { version = "0.4.7" , path = "credential/cargo-credential-wincred" }
2024-02-26 23:27:17 +00:00
cargo-platform = { path = "crates/cargo-platform" , version = "0.1.5" }
2024-06-17 14:05:39 +00:00
cargo-test-macro = { version = "0.3.0" , path = "crates/cargo-test-macro" }
cargo-test-support = { version = "0.3.0" , path = "crates/cargo-test-support" }
2024-06-13 18:38:32 +00:00
cargo-util = { version = "0.2.14" , path = "crates/cargo-util" }
2024-06-10 14:53:58 +00:00
cargo-util-schemas = { version = "0.5.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"
2024-05-01 15:09:07 +00:00
color-print = "0.3.6"
2023-12-01 17:33:18 +00:00
core-foundation = { version = "0.9.4" , features = [ "mac_os_10_7_support" ] }
2024-06-13 18:38:32 +00:00
crates-io = { version = "0.40.4" , 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"
2024-03-01 16:29:10 +00:00
curl-sys = "0.4.72"
2024-01-02 10:21:24 +00:00
filetime = "0.2.23"
2024-05-01 15:09:07 +00:00
flate2 = { version = "1.0.30" , default-features = false , features = [ "zlib" ] }
2024-06-14 00:39:37 +00:00
git2 = "0.19.0"
git2-curl = "0.20.0"
2024-05-22 13:17:45 +00:00
gix = { version = "0.63.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"
2022-12-28 23:52:10 +00:00
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"
2024-05-01 15:09:07 +00:00
indexmap = "2.2.6"
2024-06-09 18:15:29 +00:00
itertools = "0.13.0"
2024-05-01 15:09:07 +00:00
jobserver = "0.1.31"
2023-08-01 02:18:22 +00:00
lazycell = "1.3.0"
2024-05-01 15:09:07 +00:00
libc = "0.2.154"
2024-06-14 00:39:37 +00:00
libgit2-sys = "0.17.0"
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"
2024-04-01 03:40:34 +00:00
opener = "0.7.0"
2024-03-06 13:51:35 +00:00
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-19 12:49:19 +00:00
os_info = { version = "3.8.2" , default-features = false }
2024-01-02 10:21:24 +00:00
pasetors = { version = "0.6.8" , features = [ "v3" , "paserk" , "std" , "serde" ] }
2024-05-01 15:09:07 +00:00
pathdiff = "0.2.1"
percent-encoding = "2.3.1"
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-06-10 13:47:13 +00:00
pulldown-cmark = { version = "0.11.0" , 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"
2024-03-01 02:01:47 +00:00
rusqlite = { version = "0.31.0" , features = [ "bundled" ] }
2024-02-26 23:27:17 +00:00
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" ] }
2024-05-01 15:09:07 +00:00
serde = "1.0.199"
2024-02-05 18:07:44 +00:00
serde-untagged = "0.1.5"
2023-02-15 15:22:08 +00:00
serde-value = "0.7.0"
2024-02-05 18:07:44 +00:00
serde_ignored = "0.1.10"
2024-05-01 15:09:07 +00:00
serde_json = "1.0.116"
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"
2024-03-01 02:01:55 +00:00
supports-hyperlinks = "3.0.0"
2024-06-07 20:12:58 +00:00
snapbox = { version = "0.6.9" , features = [ "diff" , "dir" , "term-svg" , "regex" , "json" ] }
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-05-01 15:09:07 +00:00
thiserror = "1.0.59"
time = { version = "0.3.36" , features = [ "parsing" , "formatting" , "serde" ] }
2024-06-03 16:22:00 +00:00
toml = "0.8.14"
toml_edit = { version = "0.22.14" , features = [ "serde" ] }
2024-06-21 14:01:01 +00:00
tracing = { version = "0.1.40" , default-features = false , features = [ "std" ] } # 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"
2024-05-01 15:09:07 +00:00
unicode-width = "0.1.12"
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"
2023-12-01 03:29:43 +00:00
windows-sys = "0.52"
2023-04-28 14:56:09 +00:00
2023-05-24 21:25:07 +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-06-10 14:58:55 +00:00
version = "0.82.0"
2023-07-12 15:21:33 +00:00
edition . workspace = true
2023-07-12 15:26:19 +00:00
license . workspace = true
2024-06-13 17:27:19 +00:00
rust-version = "1.79" # MSRV:1
2023-12-18 21:08:29 +00:00
homepage = "https://doc.rust-lang.org/cargo/index.html"
2023-12-18 20:31:24 +00:00
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 ]
2023-12-14 22:28:05 +00:00
annotate-snippets . workspace = true
2023-09-28 19:43:40 +00:00
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
2023-10-10 20:03:22 +00:00
cargo-platform . workspace = true
2023-12-15 18:51:40 +00:00
cargo-util-schemas . workspace = true
2023-04-28 14:56:09 +00:00
cargo-util . workspace = true
clap = { workspace = true , features = [ "wrap_help" ] }
2023-10-10 20:03:22 +00:00
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
libgit2-sys . workspace = true
memchr . workspace = true
opener . workspace = true
os_info . workspace = true
pasetors . workspace = true
pathdiff . workspace = true
rand . workspace = true
2023-09-07 04:34:05 +00:00
regex . workspace = true
2023-09-07 04:22:23 +00:00
rusqlite . workspace = true
2023-04-28 14:56:09 +00:00
rustfix . workspace = true
2024-04-24 10:44:46 +00:00
same-file . workspace = true
2023-04-28 14:56:09 +00:00
semver . workspace = true
serde = { workspace = true , features = [ "derive" ] }
2023-08-26 21:47:53 +00:00
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
2023-10-28 02:15:06 +00:00
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
2024-06-21 14:01:01 +00:00
tracing = { workspace = true , features = [ "attributes" ] }
2023-08-05 08:51:03 +00:00
tracing-subscriber . workspace = true
2023-07-26 16:02:47 +00:00
unicase . workspace = true
2023-04-28 14:56:09 +00:00
unicode-width . workspace = true
url . workspace = true
walkdir . workspace = true
2024-04-01 03:40:43 +00:00
supports-unicode = "3.0.0"
2015-01-20 16:01:52 +00:00
2024-03-06 16:35:58 +00:00
[ target . 'cfg(target_has_atomic = "64")' . dependencies ]
tracing-chrome . workspace = true
2024-04-19 12:27:21 +00:00
[ target . 'cfg(unix)' . dependencies ]
libc . workspace = true
2023-11-09 18:09:00 +00:00
[ target . 'cfg(target_os = "linux")' . dependencies ]
cargo-credential-libsecret . workspace = true
[ target . 'cfg(target_os = "macos")' . dependencies ]
cargo-credential-macos-keychain . workspace = true
2023-04-17 18:26:48 +00:00
[ target . 'cfg(not(windows))' . dependencies ]
2023-04-28 14:56:09 +00:00
openssl = { workspace = true , optional = true }
2023-04-16 06:56:54 +00:00
2023-11-09 18:09:00 +00:00
[ 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" ,
2023-08-26 09:59:04 +00:00
"Win32_Security" ,
2023-01-31 10:02:57 +00:00
"Win32_Storage_FileSystem" ,
2023-08-26 09:59:04 +00:00
"Win32_System_IO" ,
2023-04-22 11:24:59 +00:00
"Win32_System_Console" ,
2023-01-31 10:02:57 +00:00
"Win32_System_JobObjects" ,
2023-08-26 09:59:04 +00:00
"Win32_System_Threading" ,
2018-01-03 19:25:28 +00:00
]
2017-01-05 21:09:36 +00:00
2015-03-09 19:07:35 +00:00
[ dev-dependencies ]
2024-03-02 20:38:11 +00:00
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
2014-09-27 04:14:46 +00:00
2020-07-06 01:15:07 +00:00
[ build-dependencies ]
2023-04-28 14:56:09 +00:00
flate2 . workspace = true
tar . workspace = true
2020-07-06 01:15:07 +00:00
2014-07-16 00:51:49 +00:00
[ [ bin ] ]
name = "cargo"
test = false
2014-08-14 21:54:56 +00:00
doc = false
2018-08-05 06:02:57 +00:00
[ features ]
2019-10-01 07:39:57 +00:00
vendored-openssl = [ "openssl/vendored" ]
2022-09-29 16:17:25 +00:00
vendored-libgit2 = [ "libgit2-sys/vendored" ]
2023-04-17 18:26:48 +00:00
# This is primarily used by rust-lang/rust distributing cargo the executable.
2023-12-08 01:23:33 +00:00
all-static = [ 'vendored-openssl' , 'curl/static-curl' , 'curl/force-system-lib-on-osx' , 'vendored-libgit2' ]
2023-05-24 21:25:07 +00:00
[ lints ]
workspace = true