Maxime “pep” Buquet
a076221c9a
`--sort-modules-by-appearance` needs to be passed to rustdoc for this to happen. I haven't found a way to make it so that we don't have to add this flag manually each time we build locally. This config option should at least fix it for docs.rs. Signed-off-by: Maxime “pep” Buquet <pep@bouah.net>
35 lines
934 B
TOML
35 lines
934 B
TOML
[package]
|
|
name = "xmpp-parsers"
|
|
version = "0.12.2"
|
|
authors = [
|
|
"Emmanuel Gil Peyrot <linkmauve@linkmauve.fr>",
|
|
"Maxime “pep” Buquet <pep+code@bouah.net>",
|
|
]
|
|
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"]
|
|
categories = ["parsing", "network-programming"]
|
|
license = "MPL-2.0"
|
|
edition = "2018"
|
|
|
|
[dependencies]
|
|
minidom = "0.10.0"
|
|
jid = { version = "0.5.3", features = ["minidom"] }
|
|
base64 = "0.10"
|
|
digest = "0.8"
|
|
sha-1 = "0.8"
|
|
sha2 = "0.8"
|
|
sha3 = "0.8"
|
|
blake2 = "0.8"
|
|
chrono = "0.4.5"
|
|
try_from = "0.3.2"
|
|
|
|
[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", "-Z unstable-options" ]
|