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 28cb9ae commit 51bddd0Copy full SHA for 51bddd0
hdf5-sys/build.rs
@@ -659,7 +659,7 @@ impl Config {
659
let mut vs: Vec<_> = (5..=21).map(|v| Version::new(1, 8, v)).collect(); // 1.8.[5-21]
660
vs.extend((0..=8).map(|v| Version::new(1, 10, v))); // 1.10.[0-8]
661
vs.extend((0..=2).map(|v| Version::new(1, 12, v))); // 1.12.[0-2]
662
- vs.extend((0..=0).map(|v| Version::new(1, 14, v))); // 1.14.[0-0]
+ vs.extend((0..=1).map(|v| Version::new(1, 14, v))); // 1.14.[0-1]
663
for v in vs.into_iter().filter(|&v| version >= v) {
664
println!("cargo:rustc-cfg=feature=\"{}.{}.{}\"", v.major, v.minor, v.micro);
665
println!("cargo:version_{}_{}_{}=1", v.major, v.minor, v.micro);
0 commit comments