2017-02-27 15:08:09 +00:00
|
|
|
[package]
|
|
|
|
name = "sasl"
|
2020-12-26 14:46:04 +00:00
|
|
|
version = "0.5.0"
|
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."
|
2017-02-27 15:46:14 +00:00
|
|
|
homepage = "https://gitlab.com/lumi/sasl-rs"
|
|
|
|
repository = "https://gitlab.com/lumi/sasl-rs"
|
|
|
|
documentation = "https://docs.rs/sasl"
|
|
|
|
readme = "README.md"
|
|
|
|
keywords = ["sasl", "authentication"]
|
|
|
|
license = "LGPL-3.0+"
|
2019-01-17 21:54:32 +00:00
|
|
|
edition = "2018"
|
2017-02-27 15:46:14 +00:00
|
|
|
|
|
|
|
[badges]
|
|
|
|
gitlab = { repository = "lumi/sasl-rs" }
|
2017-02-27 15:08:09 +00:00
|
|
|
|
2017-03-25 13:44:22 +00:00
|
|
|
[features]
|
|
|
|
default = ["scram"]
|
2020-02-25 21:32:03 +00:00
|
|
|
scram = ["base64", "getrandom", "sha-1", "sha2", "hmac", "pbkdf2"]
|
2017-03-25 13:44:22 +00:00
|
|
|
|
2017-02-27 15:08:09 +00:00
|
|
|
[dependencies]
|
2020-12-26 14:44:39 +00:00
|
|
|
base64 = { version = "0.13", optional = true }
|
|
|
|
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 }
|
|
|
|
pbkdf2 = { version = "0.10", default-features = false, optional = true }
|