feat: 1.7.11, update dependencies, change default features

This commit is contained in:
2024-03-17 12:46:34 +08:00
parent de675d215a
commit 2067faec8e
4 changed files with 9 additions and 8 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "tiny-encrypt"
version = "1.7.10"
version = "1.7.11"
edition = "2021"
license = "MIT"
description = "A simple and tiny file encrypt tool"
@@ -9,7 +9,8 @@ repository = "https://git.hatter.ink/hatter/tiny-encrypt-rs"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[features]
default = ["decrypt", "macos", "smartcard", "secure-enclave"]
default = ["decrypt", "macos", "smartcard"]
full = ["decrypt", "macos", "smartcard", "secure-enclave"]
decrypt = ["smartcard"]
smartcard = ["openpgp-card", "openpgp-card-pcsc", "yubikey"]
macos = ["security-framework"]