We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3d7e5a3 commit da9f52eCopy full SHA for da9f52e
newsfragments/4353.fixed.md
@@ -0,0 +1 @@
1
+fixed compile error due to c-string literals on Rust < 1.79
pyo3-build-config/src/lib.rs
@@ -143,7 +143,7 @@ pub fn print_feature_cfgs() {
143
println!("cargo:rustc-cfg=invalid_from_utf8_lint");
144
}
145
146
- if rustc_minor_version >= 77 {
+ if rustc_minor_version >= 79 {
147
println!("cargo:rustc-cfg=c_str_lit");
148
149
0 commit comments