xmpp-rs/Cargo.toml

35 lines
909 B
TOML
Raw Normal View History

2017-04-18 19:44:36 +00:00
[package]
name = "xmpp-parsers"
version = "0.14.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-parsers"
repository = "https://gitlab.com/xmpp-rs/xmpp-parsers"
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]
2019-01-16 12:32:55 +00:00
minidom = "0.10.0"
jid = { version = "0.6.0", features = ["minidom"] }
2018-12-18 14:29:30 +00:00
base64 = "0.10"
digest = "0.8"
sha-1 = "0.8"
sha2 = "0.8"
sha3 = "0.8"
blake2 = "0.8"
2018-07-31 20:38:13 +00:00
chrono = "0.4.5"
[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" ]