-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy pathCargo.toml
executable file
·79 lines (68 loc) · 1.9 KB
/
Cargo.toml
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
[package]
name = "epic"
version = "3.6.0"
authors = ["Epic Foundation <[email protected]>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
repository = "https://github.com/EpicCash/epic"
keywords = ["crypto", "epic", "mimblewimble"]
readme = "README.md"
exclude = ["**/*.epic", "**/*.epic2"]
build = "src/build/build.rs"
edition = "2021"
[workspace]
members = [
"api",
"chain",
"config",
"core",
"keychain",
"p2p",
"servers",
"store",
"util",
"pool",
"bugreport",
]
exclude = ["etc/gen_gen"]
[[bin]]
name = "epic"
path = "src/bin/epic.rs"
[dependencies]
blake2-rfc = "0.2"
chrono = "0.4.31"
clap = { version = "2.31", features = ["yaml"] }
ctrlc = { version = "3.1", features = ["termination"] }
cursive_table_view = "0.14.0"
humansize = "1.1.0"
serde = "1"
futures = "0.3.28"
serde_json = "1"
log = "0.4"
term = "0.5"
failure = "0.1"
failure_derive = "0.1"
reqwest = "0.11.11"
tokio = { version = "1.32", features = ["full"] }
epic_api = { path = "./api", version = "3.6.0" }
epic_config = { path = "./config", version = "3.6.0" }
epic_core = { path = "./core", version = "3.6.0" }
epic_keychain = { path = "./keychain", version = "3.6.0" }
epic_p2p = { path = "./p2p", version = "3.6.0" }
epic_servers = { path = "./servers", version = "3.6.0" }
epic_util = { path = "./util", version = "3.6.0" }
epic_chain = { path = "./chain", version = "3.6.0" }
cursive = { version = "0.17", default-features = false, features = [
"pancurses-backend",
] }
[target.'cfg(windows)'.dependencies.pancurses]
version = "0.16.1"
features = ["win32"]
[[test]]
name = "cucumber"
harness = false
[build-dependencies]
built = { version = "0.7.1", features = ["git2", "cargo-lock"] }
[dev-dependencies]
epic_store = { path = "./store", version = "3.6.0" }
cucumber_rust = { version = "^0.5.1", default-features = false }