From dc407a6833b8358855fe5fb949b4253874311f47 Mon Sep 17 00:00:00 2001 From: Alan Du Date: Thu, 1 Jun 2017 20:35:39 +0100 Subject: Truncate fractional seconds to picoseconds Close https://github.com/alexcrichton/toml-rs/issues/186 --- tests/valid/datetime-truncate.json | 6 ++++++ tests/valid/datetime-truncate.toml | 1 + 2 files changed, 7 insertions(+) create mode 100644 tests/valid/datetime-truncate.json create mode 100644 tests/valid/datetime-truncate.toml (limited to 'tests/valid') diff --git a/tests/valid/datetime-truncate.json b/tests/valid/datetime-truncate.json new file mode 100644 index 0000000..34a432f --- /dev/null +++ b/tests/valid/datetime-truncate.json @@ -0,0 +1,6 @@ +{ + "bestdayever": { + "type": "datetime", + "value": "1987-07-05T17:45:00.123456789012Z" + } +} diff --git a/tests/valid/datetime-truncate.toml b/tests/valid/datetime-truncate.toml new file mode 100644 index 0000000..05de841 --- /dev/null +++ b/tests/valid/datetime-truncate.toml @@ -0,0 +1 @@ +bestdayever = 1987-07-05T17:45:00.123456789012345Z -- cgit v1.2.3 From 69576569a7283ba874893fc71b6bff9407d823a6 Mon Sep 17 00:00:00 2001 From: Alan Du Date: Thu, 1 Jun 2017 20:54:17 +0100 Subject: Allow serializing keys with \n in them Use special quoted form Closes https://github.com/alexcrichton/toml-rs/issues/185 --- tests/valid/key-quote-newline.json | 3 +++ tests/valid/key-quote-newline.toml | 1 + 2 files changed, 4 insertions(+) create mode 100644 tests/valid/key-quote-newline.json create mode 100644 tests/valid/key-quote-newline.toml (limited to 'tests/valid') diff --git a/tests/valid/key-quote-newline.json b/tests/valid/key-quote-newline.json new file mode 100644 index 0000000..12473e4 --- /dev/null +++ b/tests/valid/key-quote-newline.json @@ -0,0 +1,3 @@ +{ + "\n": {"type": "integer", "value": "1"} +} diff --git a/tests/valid/key-quote-newline.toml b/tests/valid/key-quote-newline.toml new file mode 100644 index 0000000..a2639bf --- /dev/null +++ b/tests/valid/key-quote-newline.toml @@ -0,0 +1 @@ +"\n" = 1 -- cgit v1.2.3 From 2dfc9fedd30bf3d40c4c3e97adc06fe3aad34361 Mon Sep 17 00:00:00 2001 From: Alan Du Date: Thu, 1 Jun 2017 23:22:35 +0100 Subject: Store fractional seconds as a u32 instead of a f64 Drops precision down to the nanoseconds --- tests/valid/datetime-truncate.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/valid') diff --git a/tests/valid/datetime-truncate.json b/tests/valid/datetime-truncate.json index 34a432f..8c512e1 100644 --- a/tests/valid/datetime-truncate.json +++ b/tests/valid/datetime-truncate.json @@ -1,6 +1,6 @@ { "bestdayever": { "type": "datetime", - "value": "1987-07-05T17:45:00.123456789012Z" + "value": "1987-07-05T17:45:00.123456789Z" } } -- cgit v1.2.3