From bb9b5d851c989ce41857042df3698129101d48a9 Mon Sep 17 00:00:00 2001 From: Cleo Rebert Date: Sun, 21 Jun 2020 19:08:52 +0200 Subject: [PATCH] Fixed documentation --- Cargo.toml | 4 +++- src/lib.rs | 6 +++--- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 9ac0b71..cc05ed1 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "totp-rs" -version = "0.3.1" +version = "0.3.2" authors = ["Cleo Rebert "] edition = "2018" readme = "README.md" @@ -11,6 +11,8 @@ homepage = "https://github.com/constantoine/totp-rs" keywords = ["authentification", "2fa", "totp", "hmac"] categories = ["authentication", "web-programming"] +[package.metadata.docs.rs] +features = [ "qr" ] [features] default = [] diff --git a/src/lib.rs b/src/lib.rs index 1cb959f..d2beeff 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -2,7 +2,7 @@ //! //! # Examples //! -//! ``` +//! ```rust //! use std::time::SystemTime; //! use totp_rs::{Algorithm, TOTP}; //! @@ -23,7 +23,7 @@ //! println!("{}", token); //! ``` //! -//! ``` +//! ```rust //! use totp_rs::{Algorithm, TOTP}; //! //! let username = "example".to_owned(); @@ -157,7 +157,7 @@ impl TOTP { ) } - /// Will return a qrcode to automatically add a TOTP as a base64 string. Needs feature "qr" to be set. It is by default + /// Will return a qrcode to automatically add a TOTP as a base64 string. Needs feature `qr` to be enabled! /// /// # Errors ///