xmpp-rs/sasl/Cargo.toml

32 lines
988 B
TOML
Raw Normal View History

2017-02-27 16:08:09 +01:00
[package]
name = "sasl"
version = "0.5.2"
2017-02-27 16:08:09 +01:00
authors = ["lumi <lumi@pew.im>"]
description = "A crate for SASL authentication. Currently only does the client side."
homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
documentation = "https://docs.rs/sasl"
readme = "README.md"
keywords = ["sasl", "authentication"]
2022-05-19 00:19:24 +02:00
license = "MPL-2.0"
edition = "2021"
[badges]
gitlab = { repository = "xmpp-rs/xmpp-rs" }
2017-02-27 16:08:09 +01:00
[features]
default = ["scram", "anonymous"]
scram = ["base64", "getrandom", "sha1", "sha2", "hmac", "pbkdf2"]
anonymous = ["getrandom"]
2017-02-27 16:08:09 +01:00
[dependencies]
base64 = { version = "0.22", optional = true }
getrandom = { version = "0.3", optional = true }
sha1 = { version = "0.10", optional = true }
2021-12-25 15:57:41 +01:00
sha2 = { version = "0.10", optional = true }
hmac = { version = "0.12", optional = true }
pbkdf2 = { version = "0.12", default-features = false, optional = true }
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]