[package]
edition = "2021"
name = "xrml"
version = "0.1.0"
build = false
exclude = [
"usi/",
"dist/",
"*.log",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "eXtensible Rust Markup Language — recursive acronym: HRML (HRML Markup Language) and TRML (TOML-like Markup Language)"
documentation = "https://docs.rs/xrml"
readme = "README.md"
keywords = [
"web",
"framework",
"html",
"server",
"axum",
]
categories = [
"web-programming",
"command-line-utilities",
]
license = "MIT"
[lib]
name = "xrml"
path = "src/lib.rs"
[[bin]]
name = "xrml"
path = "cli/main.rs"
[[test]]
name = "advanced_tests"
path = "validation/advanced_tests.rs"
[[test]]
name = "backend_tests"
path = "tests/backend_tests.rs"
[[test]]
name = "component_loaded_test"
path = "tests/component_loaded_test.rs"
[[test]]
name = "comprehensive_tests"
path = "validation/comprehensive_tests.rs"
[[test]]
name = "config_and_editor_tests"
path = "tests/config_and_editor_tests.rs"
[[test]]
name = "features_tests"
path = "tests/features_tests.rs"
[[test]]
name = "module_integration_tests"
path = "tests/module_integration_tests.rs"
[[test]]
name = "module_more_tests"
path = "tests/module_more_tests.rs"
[[test]]
name = "oxml_tests"
path = "tests/oxml_tests.rs"
[[test]]
name = "prop_tests"
path = "validation/prop/mod.rs"
[[test]]
name = "taglib_tests"
path = "tests/taglib_tests.rs"
[[test]]
name = "template_tests"
path = "tests/template_tests.rs"
[[test]]
name = "trml_equivalence"
path = "validation/trml_equivalence.rs"
[[test]]
name = "unit_tests"
path = "validation/unit_tests.rs"
[[test]]
name = "var_resolution_tests"
path = "tests/var_resolution_tests.rs"
[dependencies.axum]
version = "0.7"
features = [
"tokio",
"http1",
"query",
"json",
]
default-features = false
[dependencies.libc]
version = "0.2"
[dependencies.notify]
version = "6"
[dependencies.pulldown-cmark]
version = "0.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"net",
"macros",
]
[dependencies.toml]
version = "0.8"
[dependencies.tower]
version = "0.4"
default-features = false
[dependencies.tower-http]
version = "0.5"
features = ["fs"]
default-features = false
[dependencies.urlencoding]
version = "2.1"
[dev-dependencies.kuchiki]
version = "0.8"
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.regex]
version = "1"
[dev-dependencies.tempfile]
version = "3"