a91252c861
Add a default "comments" feature to transform comments into errors when unset. This is so that XMPP implementations don’t have to care about comments, as they can’t happen in the stream.
29 lines
711 B
TOML
29 lines
711 B
TOML
[package]
|
|
name = "minidom"
|
|
version = "0.11.0"
|
|
authors = [
|
|
"lumi <lumi@pew.im>",
|
|
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
|
|
"Bastien Orivel <eijebong+minidom@bananium.fr>",
|
|
"Astro <astro@spaceboyz.net>",
|
|
"Maxime “pep” Buquet <pep@bouah.net>",
|
|
]
|
|
description = "A small, simple DOM implementation on top of quick-xml"
|
|
homepage = "https://gitlab.com/lumi/minidom-rs"
|
|
repository = "https://gitlab.com/lumi/minidom-rs"
|
|
documentation = "https://docs.rs/minidom"
|
|
readme = "README.md"
|
|
keywords = ["xml"]
|
|
license = "MIT"
|
|
|
|
[badges]
|
|
gitlab = { repository = "lumi/minidom-rs" }
|
|
|
|
[dependencies]
|
|
quick-xml = "0.15"
|
|
failure = "0.1.1"
|
|
failure_derive = "0.1.1"
|
|
|
|
[features]
|
|
default = ["comments"]
|
|
comments = []
|