30 lines
781 B
TOML
30 lines
781 B
TOML
[package]
|
|
name = "tiny-encrypt"
|
|
version = "0.0.0"
|
|
edition = "2021"
|
|
license = "MIT"
|
|
description = "A simple and tiny file encrypt tool"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
aes-gcm = { version = "0.10.1", features = ["zeroize"] }
|
|
aes-gcm-stream = "0.2.0"
|
|
base64 = "0.21.0"
|
|
chrono = "0.4.23"
|
|
clap = { version = "4.1.4", features = ["derive"] }
|
|
hex = "0.4.3"
|
|
openpgp-card = "0.3.3"
|
|
openpgp-card-pcsc = "0.3.0"
|
|
reqwest = { version = "0.11.14", features = ["blocking", "rustls", "rustls-tls"] }
|
|
rust_util = "0.6.41"
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
serde_json = "1.0.93"
|
|
simpledateformat = "0.1.4"
|
|
yubico_manager = "0.9.0"
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
opt-level = 'z'
|
|
lto = true
|