LeopoldArkham
LeopoldArkham
Add more defaults to match the file size formats used by Windows, *NIX, MAC OS, etc. This way a program can easily display sizes in the same manner as the...
see https://github.com/alexcrichton/toml-rs/pull/223
API
Discuss what features the API should have. As far as implementing it, we should start with: - Removal of elements - Simple appending of values at the end of containers...
- `Parser::new()` should become `Parser::from()` and accept anything that AsRef's to `&str` - `Parser::from_file()` should be added and accept anything that AsRef's to `Path` - `TOMLDocument::save_to()` should be added and...
If a TOML document does not contain a newline at the end of the file, appending to it will cause the new KV to be on the same line as...
`tests/strings.toml` should have more cases added: - Non ASCII characters - Trying harder to break multiline basic strings - Making sure escaped characters work correctly Basically it should test everything...
As of #33, errors can report the position where they occurred; Add some tests for this using some malformed TOML files.