[package]
edition = "2024"
rust-version = "1.94.0"
name = "tstring-json"
version = "0.1.0"
build = false
exclude = [
".DS_Store",
"**/.DS_Store",
"**/__pycache__",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "JSON parser-first renderer for t-string structured data backends"
homepage = "https://github.com/koxudaxi/tstring-structured-data"
documentation = "https://docs.rs/tstring-json"
readme = "README.md"
keywords = [
"pep750",
"tstring",
"json",
"template-strings",
"parser",
]
categories = [
"parser-implementations",
"text-processing",
]
license = "MIT"
repository = "https://github.com/koxudaxi/tstring-structured-data"
resolver = "2"
[lib]
name = "tstring_json"
path = "src/lib.rs"
test = false
[[test]]
name = "conformance"
path = "tests/conformance.rs"
[[test]]
name = "parser"
path = "tests/parser.rs"
[dependencies.serde_json]
version = "1.0.145"
features = ["arbitrary_precision"]
[dependencies.tstring-syntax]
version = "0.1.0"
[dev-dependencies.toml]
version = "0.9.8"