2017-02-27 15:08:09 +00:00
|
|
|
[package]
|
|
|
|
name = "sasl"
|
2023-08-20 19:29:51 +00:00
|
|
|
version = "0.5.1"
|
2017-02-27 15:08:09 +00:00
|
|
|
authors = ["lumi <lumi@pew.im>"]
|
2017-03-07 16:02:57 +00:00
|
|
|
description = "A crate for SASL authentication. Currently only does the client side."
|
2023-08-17 21:45:36 +00:00
|
|
|
homepage = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
|
|
|
repository = "https://gitlab.com/xmpp-rs/xmpp-rs"
|
2017-02-27 15:46:14 +00:00
|
|
|
documentation = "https://docs.rs/sasl"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["sasl", "authentication"]
|
2022-05-18 22:19:24 +00:00
|
|
|
license = "MPL-2.0"
|
2023-11-11 13:52:55 +00:00
|
|
|
edition = "2021"
|
2017-02-27 15:46:14 +00:00
|
|
|
|
|
|
|
[badges]
|
2023-08-17 21:45:36 +00:00
|
|
|
gitlab = { repository = "xmpp-rs/xmpp-rs" }
|
2017-02-27 15:08:09 +00:00
|
|
|
|
2017-03-25 13:44:22 +00:00
|
|
|
[features]
|
2022-05-20 05:51:51 +00:00
|
|
|
default = ["scram", "anonymous"]
|
2020-02-25 21:32:03 +00:00
|
|
|
scram = ["base64", "getrandom", "sha-1", "sha2", "hmac", "pbkdf2"]
|
2022-05-20 05:51:51 +00:00
|
|
|
anonymous = ["getrandom"]
|
2017-03-25 13:44:22 +00:00
|
|
|
|
2017-02-27 15:08:09 +00:00
|
|
|
[dependencies]
|
2023-08-20 19:18:49 +00:00
|
|
|
base64 = { version = "0.21", optional = true }
|
2020-12-26 14:44:39 +00:00
|
|
|
getrandom = { version = "0.2", optional = true }
|
2021-12-25 14:57:41 +00:00
|
|
|
sha-1 = { version = "0.10", optional = true }
|
|
|
|
sha2 = { version = "0.10", optional = true }
|
|
|
|
hmac = { version = "0.12", optional = true }
|
2023-08-20 19:23:39 +00:00
|
|
|
pbkdf2 = { version = "0.12", default-features = false, optional = true }
|