18 lines
481 B
TOML
18 lines
481 B
TOML
[package]
|
|
name = "skyums-protocol"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
authors = [ "Nicolás A. Ortega Froysa" ]
|
|
description = "An implementation of Skyum's Protocol."
|
|
readme = "./README.md"
|
|
repository = "https://gitlab.com/naortega/skyums-protocol"
|
|
license = "Zlib"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
rand = "0.8"
|
|
structopt = "0.3"
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|