[package]
edition = "2024"
name = "ason"
version = "2.0.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ASON is a data serialization format that evolved from JSON, featuring strong numeric typing and native support for enumeration types."
homepage = "https://github.com/hemashushu/ason"
readme = "README.md"
keywords = [
"ason",
"serde",
]
categories = [
"encoding",
"parser-implementations",
]
license = "MPL-2.0"
repository = "https://github.com/hemashushu/ason"
[lib]
name = "ason"
path = "src/lib.rs"
[[test]]
name = "test_parse_and_print"
path = "tests/test_parse_and_print.rs"
[[test]]
name = "test_serialize_and_deserialize"
path = "tests/test_serialize_and_deserialize.rs"
[[test]]
name = "test_token_stream_read_and_write"
path = "tests/test_token_stream_read_and_write.rs"
[dependencies.chrono]
version = "0.4.44"
[dependencies.hexfloat2]
version = "0.2.0"
[dependencies.serde]
version = "1.0.228"
features = ["derive"]
[dependencies.serde_bytes]
version = "0.11.19"
[dev-dependencies.pretty_assertions]
version = "1.4.1"