[package]
edition = "2024"
name = "zenbase-llml"
version = "0.2.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Lightweight Language Markup Language - converts data structures to XML-like markup"
readme = "README.md"
keywords = [
"markup",
"xml",
"serialization",
"formatting",
]
categories = [
"text-processing",
"parsing",
]
license = "MIT"
repository = "https://github.com/zenbase-ai/llml"
[lib]
name = "zenbase_llml"
path = "src/lib.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[test]]
name = "array_direct_formatting"
path = "tests/array_direct_formatting.rs"
[[test]]
name = "basic_value_formatting"
path = "tests/basic_value_formatting.rs"
[[test]]
name = "complex_scenarios"
path = "tests/complex_scenarios.rs"
[[test]]
name = "indentation_and_prefix"
path = "tests/indentation_and_prefix.rs"
[[test]]
name = "kebab_case_conversion"
path = "tests/kebab_case_conversion.rs"
[[test]]
name = "list_formatting"
path = "tests/list_formatting.rs"
[[test]]
name = "multiline_content"
path = "tests/multiline_content.rs"
[[test]]
name = "nested_structures"
path = "tests/nested_structures.rs"
[[test]]
name = "strict_mode"
path = "tests/strict_mode.rs"
[dependencies.regex]
version = "1.10"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dev-dependencies.serde_json]
version = "1.0"