All checks were successful
Build / release (push) Successful in 1m3s
Signed-off-by: spv <spv0x04@proton.me>
29 lines
705 B
TOML
29 lines
705 B
TOML
[package]
|
|
name = "rsa"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.80"
|
|
arboard = "3.3.1"
|
|
clap = { version = "4.5.1", features = ["derive"] }
|
|
colored = { version = "2.1.0", features = ["no-color"] }
|
|
fern = { version = "0.6.2", features = ["chrono", "colored"] }
|
|
humantime = "2.1.0"
|
|
log = "0.4.21"
|
|
num-bigint-dig = { version = "0.8.4", features = ["rand", "prime"] }
|
|
rand = "0.8.5"
|
|
|
|
[profile.release]
|
|
split-debuginfo = "packed"
|
|
strip = "symbols"
|
|
lto = "fat"
|
|
panic = "abort"
|
|
codegen-units = 1
|
|
opt-level = 3
|
|
debug = false
|
|
debug-assertions = false
|
|
overflow-checks = false
|
|
incremental = false |