[package]
edition = "2024"
name = "rustia-rs"
version = "0.1.2"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust version of typia.io for type-safe JSON validation and LLM JSON parsing"
homepage = "https://github.com/delinoio/oss/tree/main/crates/rustia"
readme = "README.md"
license = "MIT"
repository = "https://github.com/delinoio/oss"
resolver = "2"
[features]
default = ["derive"]
derive = ["dep:rustia-macros"]
[lib]
name = "rustia"
path = "src/lib.rs"
[[test]]
name = "derive_compile_fail"
path = "tests/derive_compile_fail.rs"
[[test]]
name = "llm_data_runtime"
path = "tests/llm_data_runtime.rs"
[[test]]
name = "llm_json_parse_parity"
path = "tests/llm_json_parse_parity.rs"
[dependencies.base64]
version = "0.22.1"
[dependencies.chrono]
version = "0.4.42"
features = ["std"]
default-features = false
[dependencies.regex]
version = "1.11.1"
[dependencies.rustia-macros]
version = "0.1.1"
optional = true
[dependencies.serde]
version = "1.0.219"
features = ["derive"]
[dependencies.serde_json]
version = "1.0.145"
[dependencies.serde_path_to_error]
version = "0.1.17"
[dependencies.url]
version = "2.5.7"
[dependencies.uuid]
version = "1.18.1"
features = ["std"]
[dev-dependencies.trybuild]
version = "1.0.114"