xmpp-rs/parsers/Cargo.toml

43 lines
1.5 KiB
TOML
Raw Normal View History

2017-04-18 20:44:36 +01:00
[package]
name = "xmpp-parsers"
version = "0.23.0"
authors = [
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
"Maxime “pep” Buquet <pep@bouah.net>",
]
2017-04-29 21:41:18 +01: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 21:41:18 +01:00
categories = ["parsing", "network-programming"]
2017-04-29 22:14:34 +01:00
license = "MPL-2.0"
edition = "2021"
2017-04-18 20:44:36 +01:00
[dependencies]
base64 = "0.22"
digest = "0.11"
sha1 = "0.11"
sha2 = "0.11"
sha3 = "0.12"
blake2 = "0.10.4"
2021-01-13 00:11:05 +01:00
chrono = { version = "0.4.5", default-features = false, features = ["std"] }
log = { version = "0.4", optional = true }
# same repository dependencies
jid = { version = "0.12", path = "../jid", features = ["minidom"] }
minidom = { version = "0.19", path = "../minidom" }
xso = { version = "0.4", path = "../xso", features = ["macros", "minidom", "panicking-into-impl", "jid", "uuid", "base64", "serde_json"] }
uuid = { version = "1.9.1", features = ["v4"] }
serde_json = { version = "1.0", default-features = false, features = ["alloc"] }
[features]
# Build xmpp-parsers to make components instead of clients.
component = []
# Raise errors on unexpected children and attributes.
pedantic = [ "xso/pedantic" ]
2024-06-05 11:13:29 +02:00
# Enable serde support in jid crate
serde = [ "jid/serde" ]
# Enable some additional logging in helpers
log = [ "dep:log" ]
[package.metadata.docs.rs]
rustdoc-args = [ "--sort-modules-by-appearance", "-Zunstable-options" ]