-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
57 lines (52 loc) · 1.79 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
[package]
name = "khost"
version = "0.4.0"
edition = "2021"
authors = ["Kaspa developers"]
license = "MIT OR Apache-2.0"
include = ["src/**/*.rs", "Cargo.toml", "README.md"]
repository = "https://github.com/aspectron/khost"
keywords = ["kaspa"]
description = """
Kaspa p2p node deployment automation tool for Linux OS.
"""
[dependencies]
# workflow-core = { path = "../workflow-rs/core"}
# workflow-encryption = { path = "../workflow-rs/encryption"}
# workflow-serializer = { path = "../workflow-rs/serializer"}
# workflow-utils = { path = "../workflow-rs/utils"}
workflow-core = "0.18.0"
workflow-encryption = "0.18.0"
workflow-serializer = "0.18.0"
workflow-utils = "0.18.0"
# workflow-encryption = { git = "[email protected]:workflow-rs/workflow-rs.git" branch="master" }
# workflow-http = { git = "[email protected]:workflow-rs/workflow-rs.git" branch="master" }
# workflow-serializer = { git = "[email protected]:workflow-rs/workflow-rs.git" branch="master" }
# workflow-utils = { git = "[email protected]:workflow-rs/workflow-rs.git" branch="master" }
addr = "0.15.6"
bytes = "1.6.1"
cfg-if = "1.0.0"
chrono = "0.4.38"
clap = { version = "4.5.8", features = ["derive", "string", "cargo"] }
cliclack = "0.3.1"
console = "0.15.8"
ctrlc = "3.4.4"
dirs = "5.0.1"
duct = "0.13.7"
is-root = "0.1.3"
lazy_static = "1.4.0"
mac_address = "1.1.7"
pad = "0.1.6"
reqwest = { version = "0.12.5", features = ["json","blocking"] }
rustls = "0.23.11"
rustls-pemfile = "2.1.2"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.120"
sha2 = "0.10.8"
sysinfo = "0.30.12"
termion = "4.0.2"
thiserror = "1.0.61"
tokio = { version = "1.38.0", default-features = false, features = ['io-util','time','sync','macros','rt','rt-multi-thread'] }
toml = "0.8.14"
whoami = "1.5.1"
xxhash-rust = { version = "0.8.7", features = ["xxh3"] }