[package]
edition = "2024"
name = "idml"
version = "0.6.0"
authors = ["Dariusz Depta <depta@engos.de>"]
build = false
exclude = [
".github/",
".gitignore",
"CODE_OF_CONDUCT.md",
"LICENSE",
"LICENSE-MIT",
"NOTICE",
"rustfmt.toml",
"Taskfile.yml",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Parser for Indented Delimiter Markup Language"
documentation = "https://docs.rs/idml"
readme = "README.md"
keywords = [
"indented",
"delimiter",
"markup",
"language",
"parser",
]
categories = ["encoding"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/EngosSoftware/idml.git"
[lib]
name = "idml"
path = "src/lib.rs"
[[test]]
name = "indexes"
path = "tests/indexes.rs"
[[test]]
name = "invalid_input"
path = "tests/invalid_input.rs"
[[test]]
name = "iterators"
path = "tests/iterators.rs"
[[test]]
name = "mod"
path = "tests/mod.rs"
[[test]]
name = "valid_input"
path = "tests/valid_input.rs"
[dependencies.normalized-line-endings]
version = "1.0.14"