2017-04-18 19:44:36 +00:00
|
|
|
[package]
|
|
|
|
name = "xmpp-parsers"
|
2021-01-13 10:45:42 +00:00
|
|
|
version = "0.18.1"
|
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-10-19 23:04:22 +00:00
|
|
|
homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
|
|
|
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
2019-01-16 12:45:19 +00:00
|
|
|
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]
|
2022-02-16 20:11:56 +00:00
|
|
|
minidom = "0.14"
|
2020-02-15 01:26:35 +00:00
|
|
|
jid = { version = "0.9", features = ["minidom"] }
|
2020-11-13 18:01:16 +00:00
|
|
|
base64 = "0.13"
|
2021-12-25 13:55:45 +00:00
|
|
|
digest = "0.10"
|
|
|
|
sha-1 = "0.10"
|
|
|
|
sha2 = "0.10"
|
|
|
|
sha3 = "0.10"
|
2022-03-07 11:53:08 +00:00
|
|
|
blake2 = "0.10.4"
|
2021-01-12 23:11:05 +00:00
|
|
|
chrono = { version = "0.4.5", default-features = false, features = ["std"] }
|
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 = []
|
2020-04-30 21:19:06 +00:00
|
|
|
serde = ["jid/serde"]
|
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" ]
|