Change description for shorter

This commit is contained in:
Cleo Rebert 2020-07-03 14:18:16 +02:00
parent a095a89f84
commit 83c0ded335
1 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@ authors = ["Cleo Rebert <cleo.rebert@gmail.com>"]
edition = "2018"
readme = "README.md"
license = "MIT"
description = "This library permits the creation of 2FA authentification tokens per TOTP, the verification of said tokens, with configurable time skew, validity time of each token, algorithm and number of digits. With additional feature \"qr\", you can use it to generate a base64 png qrcode."
description = "RFC-compliant TOTP implementation with ease of use as a goal and additionnal QoL features."
repository = "https://github.com/constantoine/totp-rs"
homepage = "https://github.com/constantoine/totp-rs"
keywords = ["authentication", "2fa", "totp", "hmac", "otp"]
@ -26,5 +26,5 @@ hmac = "0.8.0"
byteorder = ">= 1.3"
base32 = ">= 0.4"
qrcode = { version = ">= 0.12", optional = true }
image = { version = ">= 0.23", optional = true}
image = { version = ">= 0.23", optional = true}
base64 = { version = ">= 0.12", optional = true }