solana/Cargo.toml

59 lines
1.2 KiB
TOML
Raw Normal View History

2018-02-14 06:23:59 -08:00
[package]
2018-03-27 15:19:28 -07:00
name = "solana"
2018-03-27 16:22:31 -07:00
description = "High Performance Blockchain"
2018-03-31 13:44:12 -07:00
version = "0.4.0"
2018-03-27 15:19:28 -07:00
documentation = "https://docs.rs/solana"
2018-02-16 11:37:20 -08:00
homepage = "http://loomprotocol.com/"
2018-03-27 15:19:28 -07:00
repository = "https://github.com/solana-labs/solana"
2018-02-16 10:53:14 -08:00
authors = [
2018-03-27 15:19:28 -07:00
"Anatoly Yakovenko <anatoly@solana.co>",
"Greg Fitzgerald <greg@solana.co>",
2018-02-16 10:53:14 -08:00
]
2018-02-16 11:17:28 -08:00
license = "Apache-2.0"
2018-02-14 06:23:59 -08:00
[[bin]]
2018-03-27 15:19:28 -07:00
name = "solana-historian-demo"
path = "src/bin/historian-demo.rs"
2018-02-28 09:07:54 -08:00
[[bin]]
2018-03-27 15:19:28 -07:00
name = "solana-client-demo"
2018-02-28 09:07:54 -08:00
path = "src/bin/client-demo.rs"
2018-02-28 17:04:35 -08:00
[[bin]]
2018-03-27 15:19:28 -07:00
name = "solana-testnode"
2018-02-28 17:04:35 -08:00
path = "src/bin/testnode.rs"
[[bin]]
2018-03-27 15:19:28 -07:00
name = "solana-genesis"
path = "src/bin/genesis.rs"
[[bin]]
2018-03-27 15:19:28 -07:00
name = "solana-genesis-demo"
path = "src/bin/genesis-demo.rs"
[[bin]]
2018-03-27 15:19:28 -07:00
name = "solana-mint"
path = "src/bin/mint.rs"
2018-02-16 11:11:51 -08:00
[badges]
2018-03-27 15:19:28 -07:00
codecov = { repository = "solana-labs/solana", branch = "master", service = "github" }
2018-02-16 11:11:51 -08:00
2018-02-14 13:19:30 -08:00
[features]
unstable = []
2018-03-11 10:53:16 -07:00
ipv6 = []
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"
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"
chrono = { version = "0.4.0", features = ["serde"] }
log = "^0.4.1"
matches = "^0.1.6"
byteorder = "^1.2.1"