-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathCargo.toml
More file actions
58 lines (50 loc) · 1.47 KB
/
Cargo.toml
File metadata and controls
58 lines (50 loc) · 1.47 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
49
50
51
52
53
54
55
56
57
58
[package]
name = "epic_wallet"
version = "4.0.0"
authors = ["Epic Developers <info@epiccash.com>"]
description = "Simple, private and scalable cryptocurrency implementation based on the MimbleWimble chain format."
license = "Apache-2.0"
repository = "https://github.com/EpicCash/epic-wallet"
keywords = ["crypto", "epic", "mimblewimble"]
readme = "README.md"
exclude = ["**/*.epic", "**/*.epic2"]
build = "build.rs"
edition = "2021"
resolver = "2"
[[bin]]
name = "epic-wallet"
path = "src/bin/epic-wallet.rs"
[workspace]
members = ["api", "config", "controller", "impls", "libwallet", "util"]
exclude = ["integration"]
[dependencies]
thiserror = "2.0"
clap = { version = "4.5" }
rpassword = "7.3"
ctrlc = { version = "3.4", features = ["termination"] }
prettytable-rs = "0.10"
log = "0.4"
linefeed = "0.6"
rustyline = "16.0"
semver = "1.0"
epic_wallet_api = { path = "./api", version = "4.0.0" }
epic_wallet_impls = { path = "./impls", version = "4.0.0" }
epic_wallet_libwallet = { path = "./libwallet", version = "4.0.0" }
epic_wallet_controller = { path = "./controller", version = "4.0.0" }
epic_wallet_config = { path = "./config", version = "4.0.0" }
epic_wallet_util = { path = "./util", version = "4.0.0" }
dirs = "6.0.0"
[build-dependencies]
built = { version = "0.8", features = ["git2", "cargo-lock"] }
sha2 = "0.10"
[dev-dependencies]
url = "2.5"
serde = "1"
serde_derive = "1"
serde_json = "1"
easy-jsonrpc = "0.5"
[features]
default = []
with-tor = []
[profile.test]
panic = "abort"