totp-rs/Cargo.toml

31 lines
883 B
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"
2020-06-23 04:30:54 -04:00
version = "0.4.1"
2020-04-11 15:24:50 -04:00
authors = ["Cleo Rebert <cleo.rebert@gmail.com>"]
edition = "2018"
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" ]
2020-06-21 09:57:16 -04:00
[features]
default = []
qr = ["qrcode", "image", "base64"]
2020-04-11 15:24:50 -04:00
[dependencies]
serde = { version = "1.0", features = ["derive"] }
sha2 = "0.9.0"
sha-1 = "0.9.0"
hmac = "0.8.0"
2020-04-25 13:20:11 -04:00
byteorder = ">= 1.3"
base32 = ">= 0.4"
2020-06-21 09:57:16 -04:00
qrcode = { version = ">= 0.12", optional = true }
2020-07-03 08:18:16 -04:00
image = { version = ">= 0.23", optional = true}
2020-06-21 09:57:16 -04:00
base64 = { version = ">= 0.12", optional = true }