ron2 0.1.0

RON parser with full AST access, perfect round-trip fidelity, and formatting tools
Documentation
[[bench]]
name = "common"
path = "benches/common.rs"

[[bench]]
harness = false
name = "core"
path = "benches/core.rs"

[[bench]]
harness = false
name = "typed"
path = "benches/typed.rs"
required-features = ["derive"]

[dependencies.ahash]
version = "0.8"

[dependencies.bitflags]
default-features = false
version = "2.10"

[dependencies.dirs]
optional = true
version = "6.0.0"

[dependencies.indexmap]
default-features = false
features = ["std"]
version = "2.13"

[dependencies.itoa]
version = "1.0"

[dependencies.ron2-derive]
optional = true
version = "0.1.0"

[dependencies.unicode-ident]
default-features = false
version = "1.0"

[dependencies.unicode-segmentation]
default-features = false
optional = true
version = "1.12"

[dev-dependencies.criterion]
features = ["html_reports"]
version = "0.8"

[dev-dependencies.ron]
version = "0.12"

[dev-dependencies.serde]
features = ["derive"]
version = "1.0"

[dev-dependencies.serial_test]
version = "3.3"

[dev-dependencies.tempfile]
version = "3.24"

[features]
default = ["derive"]
derive = ["dep:ron2-derive"]
integer128 = []
internal-span-substring-test = ["dep:unicode-segmentation"]
xdg = ["dep:dirs"]

[lib]
name = "ron2"
path = "src/lib.rs"

[package]
authors = ["Thomas Schaller <me@torkleyy.com>", "Juniper Tyree <juniper.tyree@helsinki.fi>", "Dzmitry Malyshau <kvarkus@gmail.com>", "Christopher Durham <cad97@cad97.com>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = false
categories = ["encoding"]
description = "RON parser with full AST access, perfect round-trip fidelity, and formatting tools"
edition = "2024"
keywords = ["parser", "serialization", "ron"]
license = "MIT OR Apache-2.0"
name = "ron2"
readme = "README.md"
repository = "https://github.com/torkleyy/ron-extras"
rust-version = "1.90.0"
version = "0.1.0"

[package.metadata.docs.rs]
features = ["integer128"]
rustdoc-args = ["--generate-link-to-definition"]

[[test]]
name = "compat"
path = "tests/compat.rs"

[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"

[[test]]
name = "error_quality"
path = "tests/error_quality.rs"

[[test]]
name = "errors"
path = "tests/errors.rs"

[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"

[[test]]
name = "named_types"
path = "tests/named_types.rs"

[[test]]
name = "roundtrip"
path = "tests/roundtrip.rs"

[[test]]
name = "schema_generics"
path = "tests/schema_generics.rs"

[[test]]
name = "storage_tests"
path = "tests/storage_tests.rs"

[[test]]
name = "types_tests"
path = "tests/types_tests.rs"

[[test]]
name = "validation_tests"
path = "tests/validation_tests.rs"