2017-02-27 15:08:09 +00:00
|
|
|
[package]
|
|
|
|
name = "sasl"
|
2017-05-06 12:29:42 +00:00
|
|
|
version = "0.4.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."
|
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+"
|
|
|
|
|
|
|
|
[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"]
|
|
|
|
scram = ["openssl"]
|
|
|
|
|
2017-02-27 15:08:09 +00:00
|
|
|
[dependencies]
|
2018-02-27 10:44:41 +00:00
|
|
|
base64 = "0.9.0"
|
2017-03-25 13:44:22 +00:00
|
|
|
|
|
|
|
[dependencies.openssl]
|
2018-02-27 10:44:41 +00:00
|
|
|
version = "0.10.4"
|
2017-03-25 13:44:22 +00:00
|
|
|
optional = true
|