2017-04-18 19:44:36 +00:00
|
|
|
[package]
|
|
|
|
name = "xmpp-parsers"
|
2019-10-15 21:18:08 +00:00
|
|
|
version = "0.16.0"
|
2017-05-30 21:02:56 +00:00
|
|
|
authors = [
|
|
|
|
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
|
2019-01-26 20:06:51 +00:00
|
|
|
"Maxime “pep” Buquet <pep@bouah.net>",
|
2017-05-30 21:02:56 +00:00
|
|
|
]
|
2017-04-29 20:41:18 +00:00
|
|
|
description = "Collection of parsers and serialisers for XMPP extensions"
|
2019-01-16 12:45:19 +00:00
|
|
|
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"
|
2018-12-18 14:27:30 +00:00
|
|
|
edition = "2018"
|
2017-04-18 19:44:36 +00:00
|
|
|
|
|
|
|
[dependencies]
|
2019-07-24 22:20:38 +00:00
|
|
|
minidom = "0.11.0"
|
2019-10-15 21:15:17 +00:00
|
|
|
jid = { version = "0.8", features = ["minidom"] }
|
2018-12-18 14:29:30 +00:00
|
|
|
base64 = "0.10"
|
2018-10-12 15:23:34 +00:00
|
|
|
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"
|
2017-07-29 05:28:20 +00:00
|
|
|
|
2017-07-29 05:49:02 +00:00
|
|
|
[features]
|
|
|
|
# Build xmpp-parsers to make components instead of clients.
|
|
|
|
component = []
|
2019-01-12 21:00:46 +00:00
|
|
|
# Disable validation of unknown attributes.
|
|
|
|
disable-validation = []
|
2019-02-04 16:05:05 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
2019-04-22 11:43:22 +00:00
|
|
|
rustdoc-args = [ "--sort-modules-by-appearance", "-Zunstable-options" ]
|