From 606078ee1d8dd14eccfba11c7d7790995bfbe545 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9o=20REBERT?= Date: Fri, 31 Mar 2023 16:10:37 +0200 Subject: [PATCH] Normalize dependency requirements MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Cléo REBERT --- CHANGELOG.md | 9 +++++++++ Cargo.toml | 26 +++++++++++++------------- 2 files changed, 22 insertions(+), 13 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5231b64..1c027bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +# [5.0.1](https://github.com/constantoine/totp-rs/releases/tag/v5.0.1) (31/03/2023) +### Changes. + +### Changes +- Normalize dependencies specifications since cargo uses range dependency by default. + +### Special thanks +* [@bestia-dev](https://github.com/bestia-dev) for pointing out discrepancies in my dependency requirements. + # [5.0](https://github.com/constantoine/totp-rs/releases/tag/v5.0) (28/03/2023) ### Breaking changes. - MSRV has been set to Rust `1.61`. diff --git a/Cargo.toml b/Cargo.toml index fc7700f..280f0fe 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "totp-rs" -version = "5.0.0" +version = "5.0.1" authors = ["Cleo Rebert "] rust-version = "1.61" edition = "2021" @@ -25,15 +25,15 @@ steam = [] [dependencies] serde = { version = "1.0", features = ["derive"], optional = true } -sha2 = "~0.10.2" -sha1 = "~0.10.5" -hmac = "~0.12.1" -base32 = "~0.4" -urlencoding = { version = "^2.1.0", optional = true} -url = { version = "^2.3.1", optional = true } -constant_time_eq = "0.2.4" -qrcodegen = { version = "~1.8", optional = true } -image = { version = "~0.24.2", features = ["png"], optional = true, default-features = false} -base64 = { version = "~0.21", optional = true } -rand = { version = "~0.8.5", features = ["std_rng", "std"], optional = true, default-features = false } -zeroize = { version = "1.6.0", features = ["alloc", "derive"], optional = true } \ No newline at end of file +sha2 = "0.10" +sha1 = "0.10" +hmac = "0.12" +base32 = "0.4" +urlencoding = { version = "2.1", optional = true} +url = { version = "2.3", optional = true } +constant_time_eq = "0.2" +qrcodegen = { version = "1.8", optional = true } +image = { version = "0.24", features = ["png"], optional = true, default-features = false} +base64 = { version = "0.21", optional = true } +rand = { version = "0.8", features = ["std_rng", "std"], optional = true, default-features = false } +zeroize = { version = "1.6", features = ["alloc", "derive"], optional = true } \ No newline at end of file