Andrii Radyk
dea4b79a71
remove deprecated Error::description
2019-12-22 00:06:00 +01:00
daubaris
c822128a02
Mixed type arrays ( #358 )
...
* Added support of mixed-type arrays
* Add tests cases
* Replaced &'static str type for type_ and created a new enum instead
* Restored ArrayMixedType
2019-11-22 10:28:29 -06:00
est31
55ca6c5e30
Remove redundant #[doc(hidden)] attributes ( #331 )
2019-09-09 13:04:47 -05:00
Nick Hackman
c18d474acf
Propogate write! errors to ser::Error
...
std::fmt::Errors are now converted to ser::Errors via ser::Error::custom
2019-08-20 12:59:28 -04:00
Nick Hackman
6699b5be03
Potential Solution to drop clippy errors
...
Calling the write!, the result that it returns doesn't matter or wasn't
deemed as important and was dropped before. This was just removed and
then the unused Result is ignored via clippy attribute. This is a
plausible solution to get past the Clippy Error, but others may be more
ideal.
2019-08-18 20:23:40 -04:00
Nick Hackman
8b88c96cfc
Removed all warnings besides two
...
Majority of warnings removed via RustFix
Two remain one being a long return type and another being a name
suggestion from Clippy `to_owned` for MaybeString
2019-08-14 23:05:30 -04:00
Eric Huss
5cb9b37b99
Squelch explicit_outlives_requirements warning.
2019-08-12 09:12:39 -07:00
Eric Huss
0737f0b27a
2018 edition idioms.
2019-05-08 17:37:38 -07:00
Eric Huss
68fd59c78d
Migrate to 2018 edition.
2019-05-08 12:12:14 -07:00
Alex Crichton
cbfc4e18f8
Run cargo fmt
2018-12-17 17:45:35 -08:00
Steven Pease
d75c9ccd00
Allow newtype key
2018-10-27 18:28:18 -07:00
Matti Niemenmaa
dce343e926
Avoid panic on pretty string ending in single quote
...
Fixes #262 .
2018-10-01 11:58:57 +03:00
Eric Huss
16d8b14fcf
0.5: Support floats nan, inf, and +/-0.0.
...
cc #224
2018-07-11 00:50:04 -07:00
Alex Crichton
2a15817c47
Support fixed-length arrays
...
Turns out these are deserialized/serialized as tuples! While we're at it add
support for tuple variants and tuple structs through the same paths.
Closes #244
2018-05-24 07:25:42 -07:00
John-John Tedro
6b919f8833
Use custom struct/field naming to deserialize spans
2018-05-07 04:28:00 +02:00
Alex Crichton
dd4c5131eb
Fix a number of compile warnings
2017-08-28 07:40:48 -07:00
Garrett Berg
d386be1a49
add pretty_string_literal to be able to disable literal strings
2017-08-13 17:19:02 -06:00
Garrett Berg
76f11f2033
add spaces between array items and test for them
2017-08-13 15:31:09 -06:00
Alex Crichton
ea0c2296e6
Merge pull request #204 from vitiral/rc_settings
...
reference count settings to bump performance a bit
2017-07-31 10:58:48 -05:00
Garrett Berg
9443fbf01f
back out doc changes for now
2017-07-30 10:19:32 -06:00
Garrett Berg
eb69fee5ff
doc fixes
2017-07-30 10:18:00 -06:00
Garrett Berg
003a65fc9f
reference count settings to bump performance a bit
2017-07-29 00:41:35 -06:00
Garrett Berg
54a4833bc1
add """ for non-literals with newlines, clean up logic and add tests
2017-07-28 09:25:53 -06:00
Garrett Berg
dabe477d64
make single lines also pretty
2017-07-28 07:14:37 -06:00
Garrett Berg
83be829f0b
fix bugs with pretty
2017-07-27 22:01:36 -06:00
Garrett Berg
61ff3c295c
close #199 : add header information for empty structs
...
- also add test which fails without this change
- also add a few helpful unit tests to table
2017-07-27 07:03:52 -06:00
Garrett Berg
203b4d43c2
fix Serializer::pretty_array(false)
2017-07-24 09:46:24 -06:00
Garrett Berg
fba6170b95
use ignore rather than no_run for toml blocks
2017-07-24 09:18:47 -06:00
Garrett Berg
ec82e695ba
fix docs and add
2017-07-22 15:11:23 -06:00
Garrett Berg
973e4cc8c7
fix "
2017-07-21 12:03:42 -06:00
Garrett Berg
1e060c55d6
use builder pattern
2017-07-20 12:47:51 -06:00
Garrett Berg
3ec47e6758
pretty arrays
2017-07-09 15:20:29 -06:00
Garrett Berg
27757113ec
array doesn't break anything...
2017-07-09 15:10:36 -06:00
Garrett Berg
fe894fee6c
add pretty sting serialization
2017-07-09 14:58:48 -06:00
Garrett Berg
36a4ebd3bf
add Settings struct
2017-07-09 14:38:48 -06:00
Alan Du
ce7b96c47b
Add toml::ser::Error::KeyNewline back in
...
Avoid a breaking change
2017-06-01 22:47:24 +01:00
Alan Du
bad367cab0
Allow serializing keys with \n in them
...
Use special quoted form
Closes https://github.com/alexcrichton/toml-rs/issues/185
2017-06-01 20:59:26 +01:00
Alan Du
d8cc119799
Close #180
2017-06-01 12:42:16 +01:00
Alex Crichton
9a8c5d8e96
Merge pull request #183 from alanhdu/invalid_number
...
Better invalid number handling
2017-05-30 19:37:44 -05:00
Alan Du
87f51b38d1
Error when trying to serialize invalid float
2017-05-31 00:30:58 +01:00
Alan Du
90bdb7e96d
Encode control characters with hex not decimal
...
Fix https://github.com/alexcrichton/toml-rs/issues/178
2017-05-30 23:55:09 +01:00
Raphaël Huchet
d5ffc6cc60
add example for to_string
2017-05-10 17:39:19 +02:00
Vincent Prouillet
a6f22570ae
Address comment and make test pass
2017-04-28 13:00:37 +09:00
Vincent Prouillet
7cb357c168
Allow to deserialize/serialize into enums
...
Close #164
2017-04-24 22:13:38 +09:00
Alex Crichton
dc5ff1ef90
Support serde 1.0.0
2017-04-20 10:16:00 -07:00
Daniel Lockyer
cecb0b58a7
Stop taking references when not needed
2017-04-12 09:29:00 +01:00
Daniel Lockyer
3034a7cf52
Simplify if-statements
2017-04-12 09:28:56 +01:00
Alex Crichton
edf22b74a1
Add support for serialize_bytes
...
Just serialize as a list of numbers.
Closes #150
2017-02-21 06:21:00 -08:00
Alex Crichton
67fb9f1953
Add a serialization helper to put tables last
...
This should help serializing maps where it's unknown up front whether the tables
and/or values come first.
Closes #142
2017-02-10 15:29:36 -08:00
Jonas mg
b5ec7d2c33
Update ser.rs
2017-02-10 14:37:47 +00:00