19 lines
532 B
TOML
19 lines
532 B
TOML
[package]
|
|
name = "rsa_implementation"
|
|
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"] }
|
|
eframe = "0.26.2"
|
|
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"
|