-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
43 lines (40 loc) · 1.23 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
[workspace]
members = [
"crates/common",
"crates/config",
"crates/types",
"crates/madara",
]
resolver = "2"
[workspace.package]
version = "0.0.1"
edition = "2021"
homepage = "https://www.madara.build/"
license = "MIT OR Apache-2.0"
authors = ["Madara-alliance <[email protected]>"]
exclude = ["./github"]
repository = "https://github.com/madara-alliance/madara-cli/tree/main/"
description = "Madara CLI is a set of tools to streamline the node setup process to quickly and efficiently deploy your own network."
keywords = ["cryptography", "blockchain"]
[workspace.dependencies]
# Local dependencies
madara_cli_common = { path = "crates/common" }
madara_cli_config = { path = "crates/config" }
madara_cli_types = { path = "crates/types" }
# External dependencies
anyhow = "1.0.82"
clap = { version = "4.4", features = ["derive", "wrap_help", "string"] }
clap_complete = "4.5.33"
clap-markdown = "0.1.4"
cliclack = "0.2.5"
console = "0.15.8"
human-panic = "2.0"
lazy_static = "1.4.0"
once_cell = "1.19.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
strum = { version = "0.26", features = ["derive"] }
thiserror = "1.0.57"
url = { version = "2.5.0", features = ["serde"] }
xshell = "0.2.6"