forked from hoprnet/hoprnet
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
96 lines (91 loc) · 4.96 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
[workspace]
resolver = "2"
members = [
"packages/core/crates/core-crypto",
"packages/core/crates/core-network",
"packages/core/crates/core-path",
"packages/core/crates/core-packet",
"packages/core/crates/core-protocol",
"packages/core/crates/core-p2p",
"packages/core/crates/core-strategy",
"packages/core/crates/core-transport",
"packages/core/crates/core-types",
"packages/core-ethereum/crates/core-ethereum-actions",
"packages/core-ethereum/crates/core-ethereum-api",
"packages/core-ethereum/crates/core-ethereum-db",
"packages/core-ethereum/crates/core-ethereum-indexer",
"packages/core-ethereum/crates/core-ethereum-types",
"packages/core-ethereum/crates/core-ethereum-rpc",
"packages/ethereum/crates/bindings",
"packages/hopli",
"packages/real/crates/real-base",
"packages/hoprd/crates/hopr-lib",
"packages/hoprd/crates/hoprd-hoprd",
"packages/hoprd/crates/hoprd-inbox",
"packages/hoprd/crates/hoprd-keypair",
"packages/utils/crates/utils-db",
"packages/utils/crates/utils-log",
"packages/utils/crates/utils-metrics",
"packages/utils/crates/utils-misc",
"packages/utils/crates/utils-types",
"packages/utils/crates/utils-validation"
]
[workspace.dependencies]
async-lock = "2.7.0"
async-std = { version = "1.12.0", features = ["attributes"] }
async-trait = "0.1"
ethers = { version = "2.0.10", default-features = false }
futures = "0.3.28"
futures-lite = "1.12.0"
futures-concurrency = "7.3.0"
getrandom = "0.2.10"
hex = "0.4.3"
js-sys = "0.3.64"
gloo-timers = { version = "0.3.0", features = ["futures"] }
lazy_static = "1.4.0"
libp2p-identity = { version = "0.2.3", features = ["peerid", "ed25519"] }
libp2p-mplex = { git = "https://github.com/hoprnet/rust-libp2p.git", branch = "release/providence-update-20230828" }
libp2p-wasm-ext = { git = "https://github.com/hoprnet/rust-libp2p.git", branch = "release/providence-update-20230828" }
libp2p = { git = "https://github.com/hoprnet/rust-libp2p.git", branch = "release/providence-update-20230828" }
multiaddr = "0.18.0"
rust-stream-ext-concurrent = { git = "https://github.com/hoprnet/rust-stream-ext-concurrent.git", branch = "main"}
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_with = { version = "3.3" }
serde-wasm-bindgen = { version = "0.6" }
thiserror = "1.0"
validator = { version = "0.16.1", features = ["derive"] }
wasm-pack = "0.12.0"
wasm-opt = "0.112.0"
wasm-bindgen = "0.2.86"
wasm-bindgen-futures = "0.4.36"
bindings = { path = "packages/ethereum/crates/bindings", default-features = false }
core-ethereum-actions = { path = "packages/core-ethereum/crates/core-ethereum-actions", default-features = false }
core-ethereum-api = { path = "packages/core-ethereum/crates/core-ethereum-api", default-features = false }
core-ethereum-db = { path = "packages/core-ethereum/crates/core-ethereum-db", default-features = false }
core-ethereum-rpc = { path = "packages/core-ethereum/crates/core-ethereum-rpc", default-features = false }
core-ethereum-types = { path = "packages/core-ethereum/crates/core-ethereum-types", default-features = false }
core-ethereum-indexer = { path = "packages/core-ethereum/crates/core-ethereum-indexer", default-features = false }
core-crypto = { path = "packages/core/crates/core-crypto", default-features = false }
core-misc = { path = "packages/core/crates/core-misc", default-features = false }
core-network = { path = "packages/core/crates/core-network", default-features = false }
core-packet = { path = "packages/core/crates/core-packet", default-features = false }
core-path = { path = "packages/core/crates/core-path", default-features = false }
core-protocol = { path = "packages/core/crates/core-protocol", default-features = false }
core-p2p = { path = "packages/core/crates/core-p2p", default-features = false }
core-strategy = { path = "packages/core/crates/core-strategy", default-features = false }
core-transport = { path = "packages/core/crates/core-transport", default-features = false }
core-types = { path = "packages/core/crates/core-types", default-features = false }
hopr-lib = { path = "packages/hoprd/crates/hopr-lib", default-features = false }
hoprd-inbox = { path = "packages/hoprd/crates/hoprd-inbox", default-features = false }
hoprd-keypair = { path = "packages/hoprd/crates/hoprd-keypair", default-features = false }
real-base = { path = "packages/real/crates/real-base", default-features = false }
utils-db = { path = "packages/utils/crates/utils-db", default-features = false }
utils-log = { path = "packages/utils/crates/utils-log", default-features = false }
utils-misc = { path = "packages/utils/crates/utils-misc", default-features = false}
utils-metrics = { path = "packages/utils/crates/utils-metrics", default-features = false }
utils-types = { path = "packages/utils/crates/utils-types", default-features = false }
utils-validation = { path = "packages/utils/crates/utils-validation", default-features = false }
[profile.release]
opt-level = "s" # optimize for small code size
#debug=true