xmpp-rs/parsers/Cargo.toml

35 lines
962 B
TOML
Raw Permalink Normal View History

2017-04-18 19:44:36 +00:00
[package]
name = "xmpp-parsers"
version = "0.20.0"
authors = [
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
"Maxime “pep” Buquet <pep@bouah.net>",
]
2017-04-29 20:41:18 +00:00
description = "Collection of parsers and serialisers for XMPP extensions"
homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
keywords = ["xmpp", "jabber", "xml"]
2017-04-29 20:41:18 +00:00
categories = ["parsing", "network-programming"]
2017-04-29 21:14:34 +00:00
license = "MPL-2.0"
edition = "2018"
2017-04-18 19:44:36 +00:00
[dependencies]
2022-07-13 18:44:36 +00:00
minidom = "0.15"
jid = { version = "0.10", features = ["minidom"] }
base64 = "0.21"
2021-12-25 13:55:45 +00:00
digest = "0.10"
sha1 = "0.10"
2021-12-25 13:55:45 +00:00
sha2 = "0.10"
sha3 = "0.10"
blake2 = "0.10.4"
2021-01-12 23:11:05 +00:00
chrono = { version = "0.4.5", default-features = false, features = ["std"] }
[features]
# Build xmpp-parsers to make components instead of clients.
component = []
# Disable validation of unknown attributes.
disable-validation = []
[package.metadata.docs.rs]
rustdoc-args = [ "--sort-modules-by-appearance", "-Zunstable-options" ]