2017-02-27 15:08:09 +00:00
|
|
|
[package]
|
|
|
|
name = "sasl"
|
2019-01-17 22:15:06 +00:00
|
|
|
version = "0.4.3"
|
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"]
|
2019-01-17 23:04:14 +00:00
|
|
|
scram = []
|
2017-03-25 13:44:22 +00:00
|
|
|
|
2017-02-27 15:08:09 +00:00
|
|
|
[dependencies]
|
2019-01-17 21:44:22 +00:00
|
|
|
base64 = "0.10"
|
2019-01-17 22:53:29 +00:00
|
|
|
rand_os = "0.1"
|
2019-01-17 22:32:39 +00:00
|
|
|
sha-1 = "0.8"
|
|
|
|
sha2 = "0.8"
|
2019-01-17 22:40:46 +00:00
|
|
|
hmac = "0.7"
|
2019-01-17 22:59:31 +00:00
|
|
|
pbkdf2 = { version = "0.3", default-features = false }
|