-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
45 lines (39 loc) · 984 Bytes
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[package]
name = "rrsa"
version = "0.2.0"
edition = "2021"
authors = ["Paulo Roberto Albuquerque"]
readme = "README.md"
homepage = "https://github.com/paulora2405/rsa-cryptography-rust"
description = "RSA keys generation, encryption and decryption implemented in rust, for learning purposes only."
[lib]
name = "rrsa_lib"
path = "src/lib/lib.rs"
bench = false
[[bin]]
name = "rrsa-cli"
path = "src/bin/cli.rs"
bench = false
[[example]]
name = "create_key"
[dependencies]
base64 = "0.21.0"
clap = { version = "4.0.17", features = ["cargo", "derive"] }
clap_complete = "4.1.4"
dbg_hex = "0.2.0"
directories = "5.0.0"
indicatif = "0.17.3"
num-bigint = { version = "0.4.3", features = ["rand"] }
num-traits = "0.2.15"
rand = "0.8.5"
regex = "1.5.6"
thiserror = "1.0.57"
[dev-dependencies]
lipsum = "0.9.0"
pretty_assertions = "1.4.0"
criterion = { version = "0.5.1", features = ["html_reports"] }
csv = "1.2.1"
serde = "1.0.158"
[[bench]]
harness = false
name = "buffer_read_bench"