Skip to content

Commit 142e68a

Browse files
committed
Upgrade miniserde to 0.1.16 again
Apparently, miniserde versions 0.1.10..=0.1.15 work for rustc 1.59.0, but not for older rustc versions. Our CI only checks the stable channel with 'cargo +nightly update -Z minimal-versions', so this was not caught. For the moment, no new CI job is added (to keep minimal dependencies and minimal rustc as orthogonal as possible). Changing the "minimal dependencies" job to also use MSRV would be an option, but that would make it less easy to see whether a job fails due to rustc or dependency versions.
1 parent 339d0dd commit 142e68a

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

bindings-generator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ custom-godot = ["which"]
1818
[dependencies]
1919
heck = "0.4"
2020
memchr = "2"
21-
miniserde = "0.1.10"
21+
miniserde = "0.1.16"
2222
proc-macro2 = "1"
2323
quote = "1"
2424
regex = { version = "1.5.5", default-features = false, features = ["std"] } # for security: https://blog.rust-lang.org/2022/03/08/cve-2022-24713.html

gdnative-sys/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ libc = "0.2"
1919
bindgen = { version = "0.59", default-features = false, features = ["runtime"] }
2020
proc-macro2 = "1"
2121
quote = "1"
22-
miniserde = "0.1.10"
22+
miniserde = "0.1.16"
2323
semver = "1"

0 commit comments

Comments
 (0)