17 lines
326 B
TOML
17 lines
326 B
TOML
[package]
|
|
name = "gongor"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
curve25519-dalek = "4.1.1"
|
|
ed25519-dalek = { version = "2.1.0", features = ["rand_core"] }
|
|
rand = "0.8.5"
|
|
|
|
|
|
[[bin]]
|
|
name = "gongor"
|
|
path = "gongor.rs"
|