-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
71 lines (63 loc) · 2.04 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
[package]
name = "dephy-edge"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = ["crates/*", "vendor/*"]
[dependencies]
bytes = "1.5.0"
futures = "0.3.28"
futures-util = { version = "0.3.28", features = ["futures-sink"] }
rumqttd = { git = "https://github.com/krhougs/rumqtt", rev = "fac50a6a911ad27d74a6218923a3c865807c5d71" }
rumqttc = { version = "0.23.0", features = ["url"] }
tokio = { version = "1.33.0", features = ["full"] }
tokio-util = "0.7.9"
anyhow = { version = "1.0.75", features = ["backtrace"] }
env_logger = "0.10"
log = "0.4"
serde_json = "1.0.107"
serde_yaml = "0.9.25"
serde = "1.0.188"
primitive-types = "0.12.1"
chrono = "0.4.31"
dashmap = { version = "5.5.3", features = ["serde"] }
dotenv = { version = "0.15.0" }
hex = "0.4.3"
k256 = { version = "0.13.1", features = ["default", "ecdh", "ecdsa-core", "serde", "ecdsa", "alloc"] }
rand_core = "0.6.4"
clap = { version = "4.4.6", features = ["env"] }
sha3 = "0.10.8"
nostr-sdk = "0.24.0"
prost = "0.12.1"
warp = "0.3.6"
bs58 = "0.5.0"
dephy-types = { version = "0.1.0", path = "crates/dephy-types" }
async-trait = "0.1.77"
libsecp256k1 = "0.7.1"
rand = "0.8.5"
aes = "0.8.3"
cbc = "0.1.2"
base58 = "0.2.0"
url = "2.5.0"
config = { git = "https://github.com/mehcode/config-rs", rev = "98cf8cbbb37836be2d444bda29ccb6b5223096bf" }
rings-core = { git = "https://github.com/RingsNetwork/rings", rev = "10b621a97af984eee2d2a3113e0301e1cdd627fb" }
rings-node = { git = "https://github.com/RingsNetwork/rings", rev = "10b621a97af984eee2d2a3113e0301e1cdd627fb", default-features = false, features = [
"node",
] }
rings-rpc = { git = "https://github.com/RingsNetwork/rings", rev = "10b621a97af984eee2d2a3113e0301e1cdd627fb" }
bincode = "1.3.3"
[build-dependencies]
[[bin]]
name = "dephy-edge"
path = "src/bin/dephy_edge.rs"
[[bin]]
name = "dephy-edge-utils"
path = "src/bin/utils.rs"
[[bin]]
name = "dephy-p2p-debug"
path = "src/bin/p2p_debug.rs"
[profile.release]
opt-level = 3
lto = "fat"
strip = true