feat: 1.7.11, update dependencies, change default features
This commit is contained in:
@@ -9,8 +9,7 @@ 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
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["decrypt", "macos", "smartcard"]
|
default = ["decrypt", "macos", "smartcard", "secure-enclave"]
|
||||||
full = ["decrypt", "macos", "smartcard", "secure-enclave"]
|
|
||||||
decrypt = ["smartcard"]
|
decrypt = ["smartcard"]
|
||||||
smartcard = ["openpgp-card", "openpgp-card-pcsc", "yubikey"]
|
smartcard = ["openpgp-card", "openpgp-card-pcsc", "yubikey"]
|
||||||
macos = ["security-framework"]
|
macos = ["security-framework"]
|
||||||
|
|||||||
6
justfile
6
justfile
@@ -3,11 +3,11 @@ _:
|
|||||||
|
|
||||||
# Install local
|
# Install local
|
||||||
install:
|
install:
|
||||||
cargo install --no-default-features --features full --path .
|
cargo install --path .
|
||||||
|
|
||||||
# Default build release
|
# Default build release
|
||||||
build:
|
build:
|
||||||
cargo build --no-default-features --features full --release
|
cargo build --release
|
||||||
|
|
||||||
# Build release without features
|
# Build release without features
|
||||||
build-no-features:
|
build-no-features:
|
||||||
@@ -20,4 +20,4 @@ try-build-all:
|
|||||||
cargo build --no-default-features --features decrypt
|
cargo build --no-default-features --features decrypt
|
||||||
cargo build --no-default-features --features macos
|
cargo build --no-default-features --features macos
|
||||||
cargo build --no-default-features --features secure-enclave
|
cargo build --no-default-features --features secure-enclave
|
||||||
cargo build --no-default-features --features full
|
cargo build
|
||||||
|
|||||||
Reference in New Issue
Block a user