-
Notifications
You must be signed in to change notification settings - Fork 36
/
Cargo.toml
34 lines (30 loc) · 1.13 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
[workspace]
resolver = "2"
members = ["cli", "grpc", "node", "node-wasm", "proto", "rpc", "types"]
[workspace.dependencies]
blockstore = "0.7.0"
lumina-node = { version = "0.7.0", path = "node" }
lumina-node-wasm = { version = "0.6.1", path = "node-wasm" }
celestia-proto = { version = "0.5.0", path = "proto" }
celestia-grpc = { version = "0.1.0", path = "grpc" }
celestia-rpc = { version = "0.7.1", path = "rpc", default-features = false }
celestia-types = { version = "0.8.0", path = "types", default-features = false }
tendermint = { version = "0.40.0", default-features = false }
tendermint-proto = "0.40.0"
libp2p = "0.54.0"
nmt-rs = "0.2.1"
prost = "0.13.3"
prost-build = "0.13.3"
prost-types = "0.13.3"
[patch.crates-io]
# Uncomment to apply local changes
#beetswap = { path = "../beetswap" }
#blockstore = { path = "../blockstore" }
#nmt-rs = { path = "../nmt-rs" }
#libp2p = { path = "../../rust-libp2p/libp2p" }
#libp2p-core = { path = "../../rust-libp2p/core" }
#libp2p-swarm = { path = "../../rust-libp2p/swarm" }
# Uncomment this if you need debug symbols in release.
# Also check node-wasm's `Cargo.toml`.
#[profile.release]
#debug = true