-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
66 lines (60 loc) · 2.08 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
[workspace]
members = [
"bin/core-cli",
"crates/cli",
"crates/modules",
"crates/error",
"crates/console",
"crates/rpc",
"crates/types",
"crates/utils"
]
resolver = "2"
[profile.release]
codegen-units = 1
lto = "fat"
panic = "unwind"
[workspace.package]
authors = ["Core Blockchain Authors"]
edition = "2021"
keywords = ["core blockchain", "xcb", "cli"]
license = "MIT OR Apache-2.0"
homepage = "https://github.com/core-coin/core-cli"
repository = "https://github.com/core-coin/core-cli"
version = "0.0.6"
[workspace.dependencies]
# Workspace members
core-cli-bin = { path = "./bin/core-cli" }
cli = { path = "./crates/cli" }
modules = { path = "./crates/modules" }
cli-error = { path = "./crates/error" }
console = { path = "./crates/console" }
rpc = { path = "./crates/rpc" }
types = {path = "./crates/types" }
utils = {path = "./crates/utils"}
# External dependencies
structopt = "0.3"
tokio = { version = "1", features = ["full"] }
reqwest = { version = "0.11", features = ["json"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
thiserror = "1.0"
async-trait = "0.1"
rustyline = { version = "15.0.0", features= ["with-file-history"]}
tracing = "0.1"
tracing-subscriber = "0.3"
rand = "0.8"
rand_core = "0.6"
hex = "0.4.3"
chrono = "0.4"
# Core libraries
base-primitives = { git = "https://github.com/core-coin/base-rs.git",default-features = false}
atoms-provider = {git = "https://github.com/core-coin/atoms-rs.git", features = ["reqwest"]}
atoms-rpc-client = {git = "https://github.com/core-coin/atoms-rs.git", features = ["reqwest"]}
atoms-json-rpc = {git = "https://github.com/core-coin/atoms-rs.git"}
atoms-transport = {git = "https://github.com/core-coin/atoms-rs.git"}
atoms-transport-http = {git = "https://github.com/core-coin/atoms-rs.git"}
atoms-rpc-types = {git = "https://github.com/core-coin/atoms-rs.git"}
atoms-signer-wallet = {git = "https://github.com/core-coin/atoms-rs.git", features= ["keystore"]}
atoms-signer = {git = "https://github.com/core-coin/atoms-rs.git"}
xcb-keystore = {git = "https://github.com/core-coin/xcb-keystore-rs.git"}