Raise required compiler for serde_derive to Rust 1.68

This commit is contained in:
David Tolnay
2025-10-19 14:52:29 -07:00
parent fae23fea97
commit 5a44519a9a
6 changed files with 10 additions and 10 deletions
+2 -2
View File
@@ -71,8 +71,8 @@ fn main() {
println!("cargo:rustc-cfg=no_core_cstr");
}
// Current minimum supported version of serde_derive crate is Rust 1.65.
if minor < 65 {
// Current minimum supported version of serde_derive crate is Rust 1.68.
if minor < 68 {
println!("cargo:rustc-cfg=no_serde_derive");
}