cryptopals/Cargo.toml

13 lines
238 B
TOML
Raw Normal View History

2023-04-27 04:58:19 +00:00
[package]
name = "cryptopals"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
aes = "0.8.2"
hex = "0.4"
2023-04-28 03:19:27 +00:00
base64 = "0.21.0"
rand = "0.8.5"