37 lines
942 B
TOML
37 lines
942 B
TOML
[package]
|
|
name = "tiny-encrypt"
|
|
version = "0.0.2"
|
|
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.7"
|
|
openpgp-card-pcsc = "0.3.0"
|
|
rand = "0.8.5"
|
|
reqwest = { version = "0.11.14", features = ["blocking", "rustls", "rustls-tls"] }
|
|
rpassword = "7.2.0"
|
|
rust_util = "0.6.42"
|
|
serde = { version = "1.0.152", features = ["derive"] }
|
|
serde_json = "1.0.93"
|
|
sha256 = "1.4.0"
|
|
simpledateformat = "0.1.4"
|
|
x509-parser = "0.15.1"
|
|
yubico_manager = "0.9.0"
|
|
yubikey = { version = "0.8.0", features = ["untested"] }
|
|
|
|
[profile.release]
|
|
codegen-units = 1
|
|
opt-level = 'z'
|
|
lto = true
|
|
panic = 'abort'
|
|
strip = true
|