From 83c0ded3353ecaa7e4a2fa789dd2fad358e4dba0 Mon Sep 17 00:00:00 2001 From: Cleo Rebert Date: Fri, 3 Jul 2020 14:18:16 +0200 Subject: [PATCH] Change description for shorter --- Cargo.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 5959c9a..60973da 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -5,7 +5,7 @@ authors = ["Cleo Rebert "] 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 }