Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ TOON automatically detects when arrays contain uniform objects and renders them
- Path expansion — Decode dotted keys back into nested structures
- DateTime support — Native `chrono` integration (optional feature)
- Powerful CLI — Standalone tool for JSON ↔ TOON conversion
- Spec conformant — Full v3.0 test suite (345/345 tests passing)
- Spec conformant — Full conformance suite from spec release v3.0.3 (358/358 tests passing)
- Configurable delimiters — Use comma (default), tab, or pipe
- Configurable indentation — Custom indent size (default: 2 spaces)
- No-std support — Works in embedded environments (with `alloc`)
Expand Down Expand Up @@ -344,7 +344,7 @@ toon-rs/

## Specification

This implementation follows the [official TOON v3.0 specification](https://github.com/toon-format/spec/blob/main/SPEC.md) with extensive conformance testing (345/345 tests passing). Key features:
This implementation follows the [official TOON v3.0 specification](https://github.com/toon-format/spec/blob/main/SPEC.md) with extensive conformance testing against the v3.0.3 fixture release (358/358 tests passing). Key features:

- **Line-oriented**: Each logical token on its own line (or tabular row)
- **Indentation-based**: Configurable indentation (default: 2 spaces)
Expand Down
2 changes: 1 addition & 1 deletion crates/toon/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ assert_eq!(user, back);
## Conformance
- Initialize fixtures: `git submodule update --init --recursive`
- Run: `TOON_CONFORMANCE=1 cargo test -p toon-rs --tests`
- Status: 349/349 tests passing (encode: 147, decode: 202)
- Status: 358/358 tests passing (encode: 150, decode: 208)

## License
MIT
Loading