xmpp-rs/Cargo.toml

32 lines
816 B
TOML
Raw Normal View History

2017-04-18 20:44:36 +01:00
[package]
name = "xmpp-parsers"
2018-09-20 21:20:18 +02:00
version = "0.11.1"
authors = [
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
"Maxime “pep” Buquet <pep+code@bouah.net>",
]
2017-04-29 21:41:18 +01:00
description = "Collection of parsers and serialisers for XMPP extensions"
homepage = "https://hg.linkmauve.fr/xmpp-parsers"
repository = "https://hg.linkmauve.fr/xmpp-parsers"
2017-05-06 21:54:12 +01:00
keywords = ["xmpp", "xml"]
2017-04-29 21:41:18 +01:00
categories = ["parsing", "network-programming"]
2017-04-29 22:14:34 +01:00
license = "MPL-2.0"
edition = "2018"
2017-04-18 20:44:36 +01:00
[dependencies]
2018-07-31 22:38:13 +02:00
minidom = "0.9.1"
jid = { version = "0.5.2", features = ["minidom"] }
2018-12-18 15:29:30 +01:00
base64 = "0.10"
digest = "0.8"
sha-1 = "0.8"
sha2 = "0.8"
sha3 = "0.8"
blake2 = "0.8"
2018-07-31 22:38:13 +02:00
chrono = "0.4.5"
2018-12-18 15:29:30 +01:00
try_from = "0.3.2"
[features]
# Build xmpp-parsers to make components instead of clients.
component = []
# Disable validation of unknown attributes.
disable-validation = []