Skip to content

Commit c54db96

Browse files
committed
Remove toml-0.5.11 dependency.
We also depend on `toml-0.7.8` and `toml-0.8.23`, but this one is easy to get rid of.
1 parent df3d797 commit c54db96

File tree

3 files changed

+4
-13
lines changed

3 files changed

+4
-13
lines changed

Cargo.lock

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ dependencies = [
315315
"serde_json",
316316
"sha2",
317317
"tar",
318-
"toml 0.5.11",
318+
"toml 0.7.8",
319319
"xz2",
320320
]
321321

@@ -336,7 +336,7 @@ dependencies = [
336336
"curl",
337337
"indexmap",
338338
"serde",
339-
"toml 0.5.11",
339+
"toml 0.7.8",
340340
]
341341

342342
[[package]]
@@ -5513,15 +5513,6 @@ version = "0.1.1"
55135513
source = "registry+https://github.com/rust-lang/crates.io-index"
55145514
checksum = "1f3ccbac311fea05f86f61904b462b55fb3df8837a366dfc601a0161d0532f20"
55155515

5516-
[[package]]
5517-
name = "toml"
5518-
version = "0.5.11"
5519-
source = "registry+https://github.com/rust-lang/crates.io-index"
5520-
checksum = "f4f7f0dd8d50a853a531c426359045b1998f04219d88799810762cd4ad314234"
5521-
dependencies = [
5522-
"serde",
5523-
]
5524-
55255516
[[package]]
55265517
name = "toml"
55275518
version = "0.7.8"

src/tools/build-manifest/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ version = "0.1.0"
44
edition = "2021"
55

66
[dependencies]
7-
toml = "0.5"
7+
toml = "0.7"
88
serde = { version = "1.0", features = ["derive"] }
99
serde_json = "1.0"
1010
anyhow = "1.0.32"

src/tools/bump-stage0/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ build_helper = { path = "../../build_helper" }
1111
curl = "0.4.38"
1212
indexmap = { version = "2.0.0", features = ["serde"] }
1313
serde = { version = "1.0.125", features = ["derive"] }
14-
toml = "0.5.7"
14+
toml = "0.7"

0 commit comments

Comments
 (0)