-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
102 lines (96 loc) · 2.93 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
[package]
name = "nodekeeper"
description = "All-in-one node management tool."
version = "0.2.18"
authors = ["Ivan Kalinin <i.kalinin@dexpa.io>"]
repository = "https://github.com/broxus/nodekeeper"
edition = "2021"
rust-version = "1.75"
license-file = "./LICENSE"
[dependencies]
aes = "0.8"
anyhow = "1.0.65"
arc-swap = "1.5"
argh = "0.1.9"
async-trait = "0.1.57"
base64 = "0.13.0"
broxus-util = { version = "0.2", default-features = false, features = ["serde", "signal"] }
bytes = "1.2"
ctr = "0.9"
ctrlc = "3.4"
dashmap = "5.4.0"
dialoguer = { version = "0.10", features = ["completion"] }
everscale-crypto = { version = "0.2", features = ["tl-proto"] }
everscale-network = { version = "0.5", default-features = false, features = ["rldp", "dht"] }
futures-util = "0.3"
generic-array = "0.14"
hex = "0.4"
hmac = "0.11.0"
home = "0.5"
indicatif = "0.17"
libc = "0.2"
num = "0.4"
once_cell = "1.15"
parking_lot = "0.12.1"
pbkdf2 = "0.9.0"
pomfrit = "0.1.8"
public-ip = "0.2"
rand = "0.8.5"
reqwest = { version = "0.11", default-features = false, features = ["rustls-tls"] }
rustc-hash = "1.1.0"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_path_to_error = "0.1"
sha2 = "0.9"
sysinfo = "0.30"
thiserror = "1.0.37"
tl-proto = "0.4"
tokio = { version = "1", features = [
"macros",
"time",
"sync",
"rt-multi-thread",
"net",
"io-util",
"process",
] }
tokio-util = "0.7"
toml = { version = "0.5", features = ["preserve_order"] }
tracing = "0.1"
tracing-subscriber = "0.3"
url = { version = "2", features = ["serde"] }
ed25519-dalek = { git = "https://github.com/broxus/ed25519-dalek.git" }
tiny-bip39 = { git = "https://github.com/broxus/tiny-bip39.git", default-features = false }
tiny-hderive = { git = "https://github.com/broxus/tiny-hderive.git" }
ton_abi = { git = "https://github.com/broxus/ton-labs-abi.git" }
ton_block = { git = "https://github.com/broxus/ton-labs-block.git", features = ["venom"] }
ton_types = { git = "https://github.com/broxus/ton-labs-types.git" }
ton_executor = { git = "https://github.com/broxus/ton-labs-executor.git" }
nekoton-abi = { git = "https://github.com/broxus/nekoton.git", features = ["derive"] }
nekoton-utils = { git = "https://github.com/broxus/nekoton.git" }
[features]
default = []
packaged = []
[package.metadata.deb]
features = ["packaged"]
depends = "build-essential, libssl-dev, pkg-config, libzstd-dev, libclang-dev, libgoogle-perftools-dev, git"
section = "utility"
assets = [
[
"target/release/nodekeeper",
"/usr/local/bin/nodekeeper",
"755",
],
[
"README.md",
"usr/share/doc/nodekeeper/README",
"644",
],
]
conf-files = ["/etc/nodekeeper/"]
maintainer-scripts = "debian/"
systemd-units = [
{ unit-name = "validator", enable = true, start = false, stop-on-upgrade = false },
{ unit-name = "validator-manager", enable = true, start = false },
{ unit-name = "validator-exporter", enable = true, start = false },
]