Skip to content

Commit 1d640e5

Browse files
committed
Update serde in workspace and non-synced dependencies
The main workspace, bootstrap, cargo, miri, and rust-analyzer all lock serde to different versions. It's preferable to share the same version where possible, so update it. Rustfmt is synced from another repository and has its own Cargo.lock, but since it's added to the overall workspace it should respect the version here. Cargo is already at the latest version. Miri and rust-analyzer would require upstream updates.
1 parent 613a5c9 commit 1d640e5

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

Cargo.lock

+6-6
Original file line numberDiff line numberDiff line change
@@ -2660,9 +2660,9 @@ checksum = "dbf0c48bc1d91375ae5c3cd81e3722dff1abcf81a30960240640d223f59fe0e5"
26602660

26612661
[[package]]
26622662
name = "proc-macro2"
2663-
version = "1.0.53"
2663+
version = "1.0.56"
26642664
source = "registry+https://github.com/rust-lang/crates.io-index"
2665-
checksum = "ba466839c78239c09faf015484e5cc04860f88242cff4d03eb038f04b4699b73"
2665+
checksum = "2b63bdb0cd06f1f4dedf69b254734f9b45af66e4a031e42a7480257d9898b435"
26662666
dependencies = [
26672667
"unicode-ident",
26682668
]
@@ -4435,18 +4435,18 @@ dependencies = [
44354435

44364436
[[package]]
44374437
name = "serde"
4438-
version = "1.0.159"
4438+
version = "1.0.160"
44394439
source = "registry+https://github.com/rust-lang/crates.io-index"
4440-
checksum = "3c04e8343c3daeec41f58990b9d77068df31209f2af111e059e9fe9646693065"
4440+
checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c"
44414441
dependencies = [
44424442
"serde_derive",
44434443
]
44444444

44454445
[[package]]
44464446
name = "serde_derive"
4447-
version = "1.0.159"
4447+
version = "1.0.160"
44484448
source = "registry+https://github.com/rust-lang/crates.io-index"
4449-
checksum = "4c614d17805b093df4b147b51339e7e44bf05ef59fba1e45d83500bcfb4d8585"
4449+
checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df"
44504450
dependencies = [
44514451
"proc-macro2",
44524452
"quote",

src/bootstrap/Cargo.lock

+8-8
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ dependencies = [
128128
"heck",
129129
"proc-macro2",
130130
"quote",
131-
"syn 2.0.15",
131+
"syn 2.0.8",
132132
]
133133

134134
[[package]]
@@ -637,19 +637,19 @@ checksum = "d29ab0c6d3fc0ee92fe66e2d99f700eab17a8d57d1c1d3b748380fb20baa78cd"
637637

638638
[[package]]
639639
name = "serde"
640-
version = "1.0.137"
640+
version = "1.0.160"
641641
source = "registry+https://github.com/rust-lang/crates.io-index"
642-
checksum = "61ea8d54c77f8315140a05f4c7237403bf38b72704d031543aa1d16abbf517d1"
642+
checksum = "bb2f3770c8bce3bcda7e149193a069a0f4365bda1fa5cd88e03bca26afc1216c"
643643

644644
[[package]]
645645
name = "serde_derive"
646-
version = "1.0.137"
646+
version = "1.0.160"
647647
source = "registry+https://github.com/rust-lang/crates.io-index"
648-
checksum = "1f26faba0c3959972377d3b2d306ee9f71faee9714294e41bb777f83f88578be"
648+
checksum = "291a097c63d8497e00160b166a967a4a79c64f3facdd01cbd7502231688d77df"
649649
dependencies = [
650650
"proc-macro2",
651651
"quote",
652-
"syn 1.0.102",
652+
"syn 2.0.8",
653653
]
654654

655655
[[package]]
@@ -687,9 +687,9 @@ dependencies = [
687687

688688
[[package]]
689689
name = "syn"
690-
version = "2.0.15"
690+
version = "2.0.8"
691691
source = "registry+https://github.com/rust-lang/crates.io-index"
692-
checksum = "a34fcf3e8b60f57e6a14301a2e916d323af98b0ea63c599441eec8558660c822"
692+
checksum = "bcc02725fd69ab9f26eab07fad303e2497fad6fb9eba4f96c4d1687bdf704ad9"
693693
dependencies = [
694694
"proc-macro2",
695695
"quote",

0 commit comments

Comments
 (0)