Skip to content

Commit 7d92cf4

Browse files
committed
Bump toml dependency.
Just removing an old/duplicated dependency from the workspace.
1 parent 51879c3 commit 7d92cf4

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
]
@@ -1785,7 +1785,7 @@ dependencies = [
17851785
"serde_json",
17861786
"shlex",
17871787
"tempfile",
1788-
"toml 0.5.3",
1788+
"toml",
17891789
"toml-query",
17901790
]
17911791

@@ -2760,7 +2760,7 @@ dependencies = [
27602760
"tokio",
27612761
"tokio-process",
27622762
"tokio-timer",
2763-
"toml 0.5.3",
2763+
"toml",
27642764
"url 1.7.2",
27652765
"walkdir",
27662766
]
@@ -3582,7 +3582,7 @@ dependencies = [
35823582
"serde_json",
35833583
"structopt",
35843584
"term 0.6.0",
3585-
"toml 0.5.3",
3585+
"toml",
35863586
"unicode-segmentation",
35873587
"unicode-width",
35883588
"unicode_categories",
@@ -4374,15 +4374,6 @@ dependencies = [
43744374
"tokio-reactor",
43754375
]
43764376

4377-
[[package]]
4378-
name = "toml"
4379-
version = "0.4.10"
4380-
source = "registry+https://github.com/rust-lang/crates.io-index"
4381-
checksum = "758664fc71a3a69038656bee8b6be6477d2a6c315a6b81f7081f591bffa4111f"
4382-
dependencies = [
4383-
"serde",
4384-
]
4385-
43864377
[[package]]
43874378
name = "toml"
43884379
version = "0.5.3"
@@ -4403,7 +4394,7 @@ dependencies = [
44034394
"is-match",
44044395
"lazy_static 1.3.0",
44054396
"regex",
4406-
"toml 0.5.3",
4397+
"toml",
44074398
"toml-query_derive",
44084399
]
44094400

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 <alex@alexcrichton.com>"]
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)