aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Cargo.toml5
-rw-r--r--src/test/valid.rs6
2 files changed, 8 insertions, 3 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 673be8a..ef085b9 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -14,3 +14,8 @@ A native Rust encoder and decoder of TOML-formatted files and streams. Provides
implementations of the standard Encodable/Decodable traits for TOML data to
facilitate deserializing and serializing Rust structures.
"""
+
+[profile.dev]
+debug = false
+[profile.test]
+debug = false
diff --git a/src/test/valid.rs b/src/test/valid.rs
index 205e9e6..29fcda8 100644
--- a/src/test/valid.rs
+++ b/src/test/valid.rs
@@ -20,9 +20,9 @@ fn to_json(toml: Value) -> Json {
Float(f) => doit("float", Json::String({
let (bytes, _) =
strconv::float_to_str_bytes_common(f, 10, true,
- strconv::SignNeg,
- strconv::DigMax(15),
- strconv::ExpNone,
+ strconv::SignFormat::SignNeg,
+ strconv::SignificantDigits::DigMax(15),
+ strconv::ExponentFormat::ExpNone,
false);
let s = String::from_utf8(bytes).unwrap();
if s.as_slice().contains(".") {s} else {format!("{}.0", s)}