-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
22 lines (19 loc) · 858 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
[package]
name = "cryptopals"
version = "0.1.0"
authors = ["Nym Seddon"]
edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
hashbrown = "0.9.0"
libm = "0.2.1"
num = { version = "0.3", default-features = false, features = ["alloc", "num-bigint"] }
craes = { git = "https://github.com/unseddd/craes", branch = "main" }
idsa = { git = "https://github.com/unseddd/idsa", branch = "main" }
irsa = { git = "https://github.com/unseddd/irsa", branch = "main" }
isha1 = { git = "https://github.com/unseddd/isha1", branch = "main" }
isha2 = { git = "https://github.com/unseddd/isha2", branch = "main" }
bmd4 = { git = "https://github.com/unseddd/bmd4", branch = "main" }
rand = "0.7"
[dev-dependencies]
prime-math = { git = "https://github.com/unseddd/prime-math.git", branch = "main" }