[package]
edition = "2024"
rust-version = "1.94"
name = "ytsaurus-yson"
version = "0.2.0"
authors = ["Sam Shaplygin <semyuon@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "YSON serializer and deserializer for YTsaurus (text and binary). Fork of ss123she/yson-rs @ ba2044c"
homepage = "https://github.com/sshaplygin/ytsaurus-rs"
readme = "README.md"
keywords = [
"yson",
"ytsaurus",
"serde",
"serialization",
"encoding",
]
categories = [
"encoding",
"parsing",
]
license = "Apache-2.0"
repository = "https://github.com/sshaplygin/ytsaurus-rs"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = [
"--cfg",
"docsrs",
]
[lib]
name = "ytsaurus_yson"
path = "src/lib.rs"
[[test]]
name = "attribute_tests"
path = "tests/attribute_tests.rs"
[[test]]
name = "common"
path = "tests/common.rs"
[[test]]
name = "coverage_tests"
path = "tests/coverage_tests.rs"
[[test]]
name = "fuzz_smoke_tests"
path = "tests/fuzz_smoke_tests.rs"
[[test]]
name = "interop_tests"
path = "tests/interop_tests.rs"
[[test]]
name = "prop_tests"
path = "tests/prop_tests.rs"
[[test]]
name = "ytsaurus_protocol_tests"
path = "tests/ytsaurus_protocol_tests.rs"
[[bench]]
name = "yson_benchmark"
path = "benches/yson_benchmark.rs"
harness = false
[dependencies.itoa]
version = "1.0"
[dependencies.memchr]
version = "2.8"
[dependencies.ryu]
version = "1.0"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.criterion]
version = "0.8.2"
[dev-dependencies.proptest]
version = "1.1"
[dev-dependencies.serde_bytes]
version = "0.11"