solana/Cargo.toml

123 lines
2.4 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-06-06 14:00:25 -07:00
description = "Blockchain, Rebuilt for Scale"
2018-07-19 06:01:06 -07:00
version = "0.7.0"
2018-03-27 15:19:28 -07:00
documentation = "https://docs.rs/solana"
homepage = "http://solana.com/"
2018-06-06 14:00:25 -07:00
readme = "README.md"
2018-03-27 15:19:28 -07:00
repository = "https://github.com/solana-labs/solana"
2018-02-16 10:53:14 -08:00
authors = [
"Anatoly Yakovenko <anatoly@solana.com>",
"Greg Fitzgerald <greg@solana.com>",
"Stephen Akridge <stephen@solana.com>",
2018-07-19 06:01:06 -07:00
"Michael Vines <mvines@solana.com>",
2018-07-19 06:02:54 -07:00
"Rob Walker <rob@solana.com>",
"Pankaj Garg <pankaj@solana.com>",
2018-07-19 06:01:06 -07:00
"Tyera Eulberg <tyera@solana.com>",
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
2018-02-28 09:07:54 -08:00
[[bin]]
2018-07-19 12:59:31 -07:00
name = "solana-bench-tps"
path = "src/bin/bench-tps.rs"
2018-02-28 09:07:54 -08:00
[[bin]]
name = "solana-bench-streamer"
path = "src/bin/bench-streamer.rs"
2018-06-26 22:52:34 -07:00
[[bin]]
name = "solana-wallet"
path = "src/bin/wallet.rs"
2018-06-26 22:52:34 -07:00
2018-02-28 17:04:35 -08:00
[[bin]]
name = "solana-fullnode"
path = "src/bin/fullnode.rs"
2018-02-28 17:04:35 -08:00
[[bin]]
name = "solana-keygen"
path = "src/bin/keygen.rs"
2018-05-31 14:45:03 -07:00
[[bin]]
name = "solana-fullnode-config"
path = "src/bin/fullnode-config.rs"
[[bin]]
2018-03-27 15:19:28 -07:00
name = "solana-genesis"
path = "src/bin/genesis.rs"
[[bin]]
name = "solana-drone"
2018-06-20 10:36:47 -07:00
path = "src/bin/drone.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-03-26 21:07:11 -07:00
cuda = []
erasure = []
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.11.1", default-features = false, features = ["serde"] }
serde = "1.0.27"
serde_derive = "1.0.27"
serde_json = "1.0.10"
2018-07-31 16:49:44 -07:00
ring = "0.13.2"
untrusted = "0.6.2"
bincode = "1.0.0"
chrono = { version = "0.4.0", features = ["serde"] }
log = "0.4.2"
#TODO: Uncomment the next line and remove the [dependencies.env_logger]
# section below once env_logger 0.5.12 is published
#env_logger = "0.5.12"
matches = "0.1.6"
byteorder = "1.2.1"
libc = "0.2.1"
getopts = "0.2"
2018-06-13 15:07:36 -07:00
atty = "0.2"
2018-06-11 13:04:51 -07:00
rand = "0.5.1"
pnet_datalink = "0.21.0"
tokio = "0.1"
tokio-codec = "0.1"
tokio-core = "0.1.17"
tokio-io = "0.1"
itertools = "0.7.8"
2018-06-29 16:06:05 -07:00
bs58 = "0.2.0"
p2p = "0.5.2"
futures = "0.1.21"
clap = "2.31"
reqwest = "0.8.6"
2018-07-05 21:40:09 -07:00
influx_db_client = "0.3.4"
2018-07-12 17:16:30 -07:00
dirs = "1.0.2"
2018-07-10 15:30:56 -07:00
# TODO: Remove this section once env_logger 0.5.12 is published
[dependencies.env_logger]
git = "https://github.com/sebasmagri/env_logger.git"
rev = "a8da396c2e7ed912c9f926f9e7bb2c53e9e7aee0"
2018-07-10 15:30:56 -07:00
[dev-dependencies]
criterion = "0.2"
[[bench]]
name = "bank"
harness = false
2018-07-10 19:33:16 -07:00
[[bench]]
name = "banking_stage"
2018-07-10 20:25:27 -07:00
harness = false
2018-07-10 19:33:16 -07:00
[[bench]]
name = "ledger"
2018-07-10 20:25:27 -07:00
harness = false
2018-07-10 19:33:16 -07:00
[[bench]]
name = "signature"
2018-07-10 20:25:27 -07:00
harness = false
[[bench]]
name = "sigverify"
harness = false