libreauth 0.13.0

Collection of tools for user authentication.
Documentation
[dependencies.base32]
optional = true
version = "^0.4"

[dependencies.base64]
optional = true
version = "^0.11"

[dependencies.crypto-mac]
optional = true
version = "^0.7"

[dependencies.getrandom]
optional = true
version = "^0.1"

[dependencies.hex]
optional = true
version = "^0.4"

[dependencies.hmac]
optional = true
version = "^0.7"

[dependencies.libc]
optional = true
version = "^0.2"

[dependencies.nom]
optional = true
version = "^5.1.1"

[dependencies.pbkdf2]
default-features = false
optional = true
version = "^0.3"

[dependencies.rust-argon2]
optional = true
version = "^0.8"

[dependencies.sha-1]
optional = true
version = "^0.8"

[dependencies.sha2]
optional = true
version = "^0.8"

[dependencies.sha3]
optional = true
version = "^0.8"

[dependencies.unicode-normalization]
optional = true
version = "^0.1"

[dependencies.url]
optional = true
version = "^2.1"

[features]
cbindings = ["libc"]
default = ["hash", "key", "oath", "pass"]
hash = ["hmac", "sha-1", "sha2", "sha3"]
key = ["base32", "base64", "hex", "getrandom"]
oath = ["base32", "base64", "hash", "hex", "url"]
pass = ["base64", "crypto-mac", "hash", "key", "nom", "pbkdf2", "rust-argon2", "unicode-normalization"]

[lib]
crate-type = ["rlib", "staticlib", "dylib"]
name = "libreauth"

[package]
authors = ["Rodolphe Breard <rodolphe@what.tf>"]
description = "Collection of tools for user authentication."
documentation = "https://docs.rs/libreauth/"
edition = "2018"
include = ["src/**/*", "Cargo.toml", "Licence_*.txt"]
keywords = ["authentication", "password", "oath", "hotp", "totp"]
license = "CECILL-C OR CECILL-2.1"
name = "libreauth"
readme = "README.md"
repository = "https://github.com/breard-r/libreauth"
version = "0.13.0"
[package.metadata.docs.rs]
features = ["cbindings", "key", "oath", "pass"]