Skip to content

Commit 61ae1cc

Browse files
authored
Rollup merge of rust-lang#63753 - ehuss:bump-toml, r=Mark-Simulacrum
Bump toml dependency. Just removing an old/duplicated dependency from the workspace.
2 parents d7c162a + 7d92cf4 commit 61ae1cc

File tree

3 files changed

+10
-19
lines changed

3 files changed

+10
-19
lines changed

Cargo.lock

Lines changed: 8 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ dependencies = [
185185
"serde",
186186
"serde_json",
187187
"time",
188-
"toml 0.4.10",
188+
"toml",
189189
]
190190

191191
[[package]]
@@ -202,7 +202,7 @@ name = "build-manifest"
202202
version = "0.1.0"
203203
dependencies = [
204204
"serde",
205-
"toml 0.4.10",
205+
"toml",
206206
]
207207

208208
[[package]]
@@ -316,7 +316,7 @@ dependencies = [
316316
"tar",
317317
"tempfile",
318318
"termcolor",
319-
"toml 0.5.3",
319+
"toml",
320320
"unicode-width",
321321
"url 2.1.0",
322322
"walkdir",
@@ -442,7 +442,7 @@ dependencies = [
442442
"semver",
443443
"serde",
444444
"smallvec",
445-
"toml 0.5.3",
445+
"toml",
446446
"unicode-normalization",
447447
"url 2.1.0",
448448
]
@@ -1786,7 +1786,7 @@ dependencies = [
17861786
"serde_json",
17871787
"shlex",
17881788
"tempfile",
1789-
"toml 0.5.3",
1789+
"toml",
17901790
"toml-query",
17911791
]
17921792

@@ -2761,7 +2761,7 @@ dependencies = [
27612761
"tokio",
27622762
"tokio-process",
27632763
"tokio-timer",
2764-
"toml 0.5.3",
2764+
"toml",
27652765
"url 1.7.2",
27662766
"walkdir",
27672767
]
@@ -3591,7 +3591,7 @@ dependencies = [
35913591
"serde_json",
35923592
"structopt",
35933593
"term 0.6.0",
3594-
"toml 0.5.3",
3594+
"toml",
35953595
"unicode-segmentation",
35963596
"unicode-width",
35973597
"unicode_categories",
@@ -4383,15 +4383,6 @@ dependencies = [
43834383
"tokio-reactor",
43844384
]
43854385

4386-
[[package]]
4387-
name = "toml"
4388-
version = "0.4.10"
4389-
source = "registry+https://github.com/rust-lang/crates.io-index"
4390-
checksum = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f"
4391-
dependencies = [
4392-
"serde",
4393-
]
4394-
43954386
[[package]]
43964387
name = "toml"
43974388
version = "0.5.3"
@@ -4412,7 +4403,7 @@ dependencies = [
44124403
"is-match",
44134404
"lazy_static 1.3.0",
44144405
"regex",
4415-
"toml 0.5.3",
4406+
"toml",
44164407
"toml-query_derive",
44174408
]
44184409

src/bootstrap/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ cc = "1.0.35"
4444
libc = "0.2"
4545
serde = { version = "1.0.8", features = ["derive"] }
4646
serde_json = "1.0.2"
47-
toml = "0.4"
47+
toml = "0.5"
4848
lazy_static = "1.3.0"
4949
time = "0.1"
5050
petgraph = "0.4.13"

src/tools/build-manifest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,5 @@ authors = ["Alex Crichton <[email protected]>"]
55
edition = "2018"
66

77
[dependencies]
8-
toml = "0.4"
8+
toml = "0.5"
99
serde = { version = "1.0", features = ["derive"] }

0 commit comments

Comments
 (0)