aboutsummaryrefslogtreecommitdiff
path: root/test-suite/build.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2018-07-11 09:01:53 -0500
committerGitHub <noreply@github.com>2018-07-11 09:01:53 -0500
commitf99ab3f5e30f2ce00de9bc15083d2671107f1fcf (patch)
tree3a1715fa18ba7640c12fea20ffaa762206c95c62 /test-suite/build.rs
parent2be7ce9079fa02d9dd42958410ba1c40cef9811c (diff)
parent69b4571c6bafcd7d9f675d3eb49d4c088d372eea (diff)
downloadmilf-rs-f99ab3f5e30f2ce00de9bc15083d2671107f1fcf.tar.gz
milf-rs-f99ab3f5e30f2ce00de9bc15083d2671107f1fcf.zip
Merge pull request #248 from ehuss/float-0.5
0.5: Support floats nan, inf, and +/-0.0.
Diffstat (limited to 'test-suite/build.rs')
-rw-r--r--test-suite/build.rs1
1 files changed, 1 insertions, 0 deletions
diff --git a/test-suite/build.rs b/test-suite/build.rs
index ca63946..5a9a55a 100644
--- a/test-suite/build.rs
+++ b/test-suite/build.rs
@@ -4,5 +4,6 @@ use rustc_version::{version, Version};
fn main() {
if version().unwrap() >= Version::parse("1.20.0").unwrap() {
println!(r#"cargo:rustc-cfg=feature="test-quoted-keys-in-macro""#);
+ println!(r#"cargo:rustc-cfg=feature="test-nan-sign""#);
}
}