Skip to content

Commit 11a0b96

Browse files
authored
Rollup merge of rust-lang#64536 - Aaron1011:cargo-crate-type, r=ehuss
Update Cargo This pulls in rust-lang/cargo#7159, which ensures that documenting proc macros works correctly.
2 parents d2b555e + d440e13 commit 11a0b96

File tree

3 files changed

+31
-4
lines changed

3 files changed

+31
-4
lines changed

Cargo.lock

+29-3
Original file line numberDiff line numberDiff line change
@@ -270,6 +270,7 @@ dependencies = [
270270
"atty",
271271
"bytesize",
272272
"cargo-test-macro",
273+
"cargo-test-support",
273274
"clap",
274275
"core-foundation",
275276
"crates-io",
@@ -286,8 +287,9 @@ dependencies = [
286287
"git2",
287288
"git2-curl",
288289
"glob",
289-
"hex",
290+
"hex 0.4.0",
290291
"home",
292+
"humantime",
291293
"ignore",
292294
"im-rc",
293295
"jobserver",
@@ -327,6 +329,23 @@ dependencies = [
327329
name = "cargo-test-macro"
328330
version = "0.1.0"
329331

332+
[[package]]
333+
name = "cargo-test-support"
334+
version = "0.1.0"
335+
dependencies = [
336+
"cargo",
337+
"cargo-test-macro",
338+
"filetime",
339+
"flate2",
340+
"git2",
341+
"glob",
342+
"lazy_static 1.3.0",
343+
"remove_dir_all",
344+
"serde_json",
345+
"tar",
346+
"url 2.1.0",
347+
]
348+
330349
[[package]]
331350
name = "cargo_metadata"
332351
version = "0.8.0"
@@ -698,7 +717,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index"
698717
checksum = "09de9ee0fc255ace04c7fa0763c9395a945c37c8292bb554f8d48361d1dcf1b4"
699718
dependencies = [
700719
"commoncrypto",
701-
"hex",
720+
"hex 0.3.2",
702721
"openssl",
703722
"winapi 0.3.6",
704723
]
@@ -1260,6 +1279,12 @@ version = "0.3.2"
12601279
source = "registry+https://github.com/rust-lang/crates.io-index"
12611280
checksum = "805026a5d0141ffc30abb3be3173848ad46a1b1664fe632428479619a3644d77"
12621281

1282+
[[package]]
1283+
name = "hex"
1284+
version = "0.4.0"
1285+
source = "registry+https://github.com/rust-lang/crates.io-index"
1286+
checksum = "023b39be39e3a2da62a94feb433e91e8bcd37676fbc8bea371daf52b7a769a3e"
1287+
12631288
[[package]]
12641289
name = "home"
12651290
version = "0.5.0"
@@ -2062,7 +2087,7 @@ dependencies = [
20622087
"directories",
20632088
"env_logger",
20642089
"getrandom",
2065-
"hex",
2090+
"hex 0.3.2",
20662091
"log",
20672092
"num-traits",
20682093
"rand 0.7.0",
@@ -3257,6 +3282,7 @@ dependencies = [
32573282
"serde",
32583283
"serde_json",
32593284
"smallvec",
3285+
"url 2.1.0",
32603286
"winapi 0.3.6",
32613287
]
32623288

src/tools/cargo

Submodule cargo updated 156 files

src/tools/rustc-workspace-hack/Cargo.toml

+1
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,7 @@ crossbeam-utils = { version = "0.6.5", features = ["nightly"] }
6262
serde = { version = "1.0.82", features = ['derive'] }
6363
serde_json = { version = "1.0.31", features = ["raw_value"] }
6464
smallvec = { version = "0.6", features = ['union', 'may_dangle'] }
65+
url = { version = "2.0", features = ['serde'] }
6566

6667

6768
[target.'cfg(not(windows))'.dependencies]

0 commit comments

Comments
 (0)