feat: v0.2.3, supports p384
This commit is contained in:
47
Cargo.toml
47
Cargo.toml
@@ -1,6 +1,6 @@
|
||||
[package]
|
||||
name = "tiny-encrypt"
|
||||
version = "0.2.2"
|
||||
version = "0.2.3"
|
||||
edition = "2021"
|
||||
license = "MIT"
|
||||
description = "A simple and tiny file encrypt tool"
|
||||
@@ -8,28 +8,29 @@ 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-stream = "0.2.0"
|
||||
base64 = "0.21.0"
|
||||
chrono = "0.4.23"
|
||||
clap = { version = "4.1.4", features = ["derive"] }
|
||||
flate2 = "1.0.27"
|
||||
hex = "0.4.3"
|
||||
openpgp-card = "0.3.7"
|
||||
openpgp-card-pcsc = "0.3.0"
|
||||
p256 = { version = "0.13.2", features = ["pem", "ecdh", "pkcs8"] }
|
||||
rand = "0.8.5"
|
||||
reqwest = { version = "0.11.14", features = ["blocking", "rustls", "rustls-tls"] }
|
||||
rpassword = "7.2.0"
|
||||
rsa = { version = "0.9.2", features = ["pem"] }
|
||||
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"
|
||||
x25519-dalek = "2.0.0"
|
||||
x509-parser = "0.15.1"
|
||||
yubikey = { version = "0.8.0", features = ["untested"] }
|
||||
zeroize = "1.6.0"
|
||||
aes-gcm-stream = "0.2"
|
||||
base64 = "0.21"
|
||||
chrono = "0.4"
|
||||
clap = { version = "4.1", features = ["derive"] }
|
||||
flate2 = "1.0"
|
||||
hex = "0.4"
|
||||
openpgp-card = "0.3"
|
||||
openpgp-card-pcsc = "0.3"
|
||||
p256 = { version = "0.13", features = ["pem", "ecdh", "pkcs8"] }
|
||||
p384 = { version = "0.13", features = ["pem", "ecdh", "pkcs8"] }
|
||||
rand = "0.8"
|
||||
reqwest = { version = "0.11", features = ["blocking", "rustls", "rustls-tls"] }
|
||||
rpassword = "7.2"
|
||||
rsa = { version = "0.9", features = ["pem"] }
|
||||
rust_util = "0.6"
|
||||
serde = { version = "1.0", features = ["derive"] }
|
||||
serde_json = "1.0"
|
||||
sha256 = "1.4"
|
||||
simpledateformat = "0.1"
|
||||
x25519-dalek = "2.0"
|
||||
x509-parser = "0.15"
|
||||
yubikey = { version = "0.8", features = ["untested"] }
|
||||
zeroize = "1.6"
|
||||
|
||||
[profile.release]
|
||||
codegen-units = 1
|
||||
|
||||
Reference in New Issue
Block a user