2017-02-19 20:46:44 +01:00
|
|
|
[package]
|
|
|
|
|
name = "minidom"
|
2026-06-09 17:52:43 +02:00
|
|
|
version = "0.19.0"
|
2017-12-30 16:54:03 +01:00
|
|
|
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>",
|
|
|
|
|
]
|
2022-12-28 13:55:11 -06:00
|
|
|
description = "A small, simple DOM implementation on top of rxml, targeting the subset of XML useful for XMPP"
|
2019-10-20 01:04:22 +02:00
|
|
|
homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
|
|
|
|
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
2017-02-25 15:43:56 +01:00
|
|
|
documentation = "https://docs.rs/minidom"
|
2017-02-25 15:31:58 +01:00
|
|
|
readme = "README.md"
|
2020-02-14 22:54:52 +01:00
|
|
|
keywords = ["xml", "xmpp"]
|
2020-02-14 22:58:29 +01:00
|
|
|
license = "MPL-2.0"
|
2023-11-11 14:52:55 +01:00
|
|
|
edition = "2021"
|
2017-02-25 15:31:58 +01:00
|
|
|
|
|
|
|
|
[badges]
|
2019-10-20 01:04:22 +02:00
|
|
|
gitlab = { repository = "xmpp-rs/xmpp-rs" }
|
2017-02-19 20:46:44 +01:00
|
|
|
|
|
|
|
|
[dependencies]
|
2025-09-28 09:40:44 +02:00
|
|
|
rxml = { version = "0.14.0", default-features = false, features = [ "std", "compact_str" ] }
|
2025-10-12 00:31:48 +02:00
|
|
|
thiserror = "2.0"
|
2025-09-27 16:49:42 +02:00
|
|
|
|
|
|
|
|
[dev-dependencies]
|
2025-09-28 09:40:44 +02:00
|
|
|
rxml = { version = "0.14.0", default-features = false, features = [ "std", "compact_str", "macros" ] }
|