solana/Cargo.toml

56 lines
1.2 KiB
TOML
Raw Normal View History

2018-02-14 06:23:59 -08:00
[package]
2018-02-16 10:49:21 -08:00
name = "silk"
2018-02-16 11:11:51 -08:00
description = "A silky smooth implementation of the Loom architecture"
version = "0.3.0"
2018-02-16 11:40:06 -08:00
documentation = "https://docs.rs/silk"
2018-02-16 11:37:20 -08:00
homepage = "http://loomprotocol.com/"
repository = "https://github.com/loomprotocol/silk"
2018-02-16 10:53:14 -08:00
authors = [
"Anatoly Yakovenko <aeyakovenko@gmail.com>",
"Greg Fitzgerald <garious@gmail.com>",
]
2018-02-16 11:17:28 -08:00
license = "Apache-2.0"
2018-02-14 06:23:59 -08:00
[[bin]]
name = "silk-historian-demo"
path = "src/bin/historian-demo.rs"
2018-02-28 09:07:54 -08:00
[[bin]]
name = "silk-client-demo"
path = "src/bin/client-demo.rs"
2018-02-28 17:04:35 -08:00
[[bin]]
name = "silk-testnode"
path = "src/bin/testnode.rs"
[[bin]]
name = "silk-genesis"
path = "src/bin/genesis.rs"
[[bin]]
name = "silk-genesis-demo"
path = "src/bin/genesis-demo.rs"
[[bin]]
name = "silk-mint"
path = "src/bin/mint.rs"
2018-02-16 11:11:51 -08:00
[badges]
2018-02-16 11:19:32 -08:00
codecov = { repository = "loomprotocol/silk", branch = "master", service = "github" }
2018-02-16 11:11:51 -08:00
2018-02-14 13:19:30 -08:00
[features]
unstable = []
asm = ["sha2-asm"]
2018-02-14 13:19:30 -08:00
2018-02-14 06:23:59 -08:00
[dependencies]
rayon = "1.0.0"
sha2 = "0.7.0"
sha2-asm = {version="0.3", optional=true}
generic-array = { version = "0.9.0", default-features = false, features = ["serde"] }
serde = "1.0.27"
serde_derive = "1.0.27"
serde_json = "1.0.10"
ring = "0.12.1"
untrusted = "0.5.1"
bincode = "1.0.0"