[package]
edition = "2024"
rust-version = "1.85"
name = "asun"
version = "1.0.1"
authors = ["Athan Xiao <athanxiao@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "ASUN (Array-Schema Unified Notation) - A high-performance, token-efficient serde data format with schema-data separation"
homepage = "https://github.com/asunLab/asun-rs"
documentation = "https://docs.rs/asun"
readme = "README.md"
keywords = [
"asun",
"serialization",
"serde",
"token-efficient",
"schema",
]
categories = [
"encoding",
"parser-implementations",
]
license = "MIT"
repository = "https://github.com/asunLab/asun-rs"
[lib]
name = "asun"
path = "src/lib.rs"
[[example]]
name = "basic"
path = "examples/basic.rs"
[[example]]
name = "bench"
path = "examples/bench.rs"
[[example]]
name = "complex"
path = "examples/complex.rs"
[[example]]
name = "cross_compat"
path = "examples/cross_compat.rs"
[[test]]
name = "cross_compat_matrix_test"
path = "tests/cross_compat_matrix_test.rs"
[[test]]
name = "cross_compat_test"
path = "tests/cross_compat_test.rs"
[[test]]
name = "format_validate_test"
path = "tests/format_validate_test.rs"
[dependencies.fast-float2]
version = "0.2"
[dependencies.ryu]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dev-dependencies.libc]
version = "0.2"
[dev-dependencies.serde_json]
version = "1"