This repository was archived by the owner on Feb 1, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathCargo.toml
More file actions
48 lines (41 loc) · 1.6 KB
/
Cargo.toml
File metadata and controls
48 lines (41 loc) · 1.6 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
[package]
name = "diamond_drops"
version = "0.1.0-a"
authors = ["James Ray (@jamesray1)", "Josiah (@ChosunOne)", "Luke Schoen (@ltfschoen)"]
description = "WIP on sharding and Ethereum 2.0 with enshrined-in-consensus data availability and Rust: a fast, safe, concurrent and practical programming language"
keywords = ["Ethereum",
"sharding",
"phase 1",
"Ethereum 2.0",
"scalability",
"data-availability",
"enshrined-in-consensus",
"blockchain"]
license = "Unlicense"
repository = "https://github.com/Drops-of-Diamond/diamond_drops"
readme = "README.md"
[[bin]]
name = "cli"
path = "src/bin/bin.rs"
doc = false # Resolve documentation conflict
[dependencies]
diamond-drops-cli = { path = "cli" }
diamond-drops-env = { path = "env" }
diamond-drops-node = { path = "node" }
log = { version = "0.4.1", features = ["max_level_debug", "release_max_level_warn"] }
error-chain = "0.11.0"
# TODO: modify once https://github.com/kbknapp/clap-rs/pull/1271 is merged.
[dependencies.clap]
version = "^2"
default-features = false
# Cherry-pick the features you'd like to use
features = [ "suggestions", "vec_map" ]
[dev-dependencies]
cargo-watch = { version = "6.0.0" }
[target.'cfg(windows)'.dependencies]
winapi = { version = "0.3.4", features = ["winsock2", "winuser", "shellapi"] }
[badges]
travis-ci = { repository = "Drops-of-Diamond/Diamond-drops", branch = "master" }
codecov = { repository = "Drops-of-Diamond/Diamond-drops", branch = "master", service = "github" }
is-it-maintained-issue-resolution = { repository = "Drops-of-Diamond/Diamond-drops" }
is-it-maintained-open-issues = { repository = "Drops-of-Diamond/Diamond-drops" }