totp-rs/Cargo.toml

33 lines
1.0 KiB
TOML
Raw Normal View History

2020-04-11 15:24:50 -04:00
[package]
2020-04-13 10:59:30 -04:00
name = "totp-rs"
version = "2.0.0"
2020-04-11 15:24:50 -04:00
authors = ["Cleo Rebert <cleo.rebert@gmail.com>"]
edition = "2021"
2020-04-13 10:59:30 -04:00
readme = "README.md"
license = "MIT"
2020-07-03 08:18:16 -04:00
description = "RFC-compliant TOTP implementation with ease of use as a goal and additionnal QoL features."
2020-04-13 10:59:30 -04:00
repository = "https://github.com/constantoine/totp-rs"
homepage = "https://github.com/constantoine/totp-rs"
2020-06-23 04:30:54 -04:00
keywords = ["authentication", "2fa", "totp", "hmac", "otp"]
2020-04-13 10:59:30 -04:00
categories = ["authentication", "web-programming"]
2020-04-11 15:24:50 -04:00
2020-06-21 13:08:52 -04:00
[package.metadata.docs.rs]
features = [ "qr", "serde_support" ]
2020-06-21 09:57:16 -04:00
[features]
default = []
otpauth = ["url"]
qr = ["qrcodegen", "image", "base64", "otpauth"]
serde_support = ["serde"]
2020-06-21 09:57:16 -04:00
2020-04-11 15:24:50 -04:00
[dependencies]
serde = { version = "1.0", features = ["derive"], optional = true }
sha2 = "~0.10.2"
sha-1 = "~0.10.0"
hmac = "~0.12.1"
base32 = "~0.4"
url = { version = "2.2.2", optional = true }
constant_time_eq = "~0.2.1"
qrcodegen = { version = "~1.8", optional = true }
image = { version = "~0.24.2", features = ["png"], optional = true, default-features = false}
base64 = { version = "~0.13", optional = true }