Disable image default features

Signed-off-by: constantoine <cleo.rebert@gmail.com>
This commit is contained in:
constantoine 2022-05-05 12:48:52 +02:00
parent 1f10c8c738
commit 64225f5acd
No known key found for this signature in database
GPG Key ID: 0FA097951CF65367
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
[package]
name = "totp-rs"
version = "1.2.0"
version = "1.2.1"
authors = ["Cleo Rebert <cleo.rebert@gmail.com>"]
edition = "2021"
readme = "README.md"
@ -27,5 +27,5 @@ hmac = "~0.12.1"
base32 = "~0.4"
constant_time_eq = "~0.2.1"
qrcodegen = { version = "~1.8", optional = true }
image = { version = "~0.24.2", optional = true}
image = { version = "~0.24.2", features = ["png"], optional = true, default-features = false}
base64 = { version = "~0.13", optional = true }