forked from eigerco/lumina
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
31 lines (28 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
[workspace]
resolver = "2"
members = ["rpc", "types"]
[workspace.dependencies]
blockstore = "0.6.1"
lumina-node = { version = "0.3.1", path = "node" }
lumina-node-wasm = { version = "0.2.0", path = "node-wasm" }
celestia-proto = { version = "0.3.0", path = "proto" }
celestia-rpc = { version = "0.4.0", path = "rpc", default-features = false }
celestia-types = { version = "0.4.0", path = "types", default-features = false }
libp2p = "0.54.1"
nmt-rs = "0.2.1"
celestia-tendermint = { version = "0.32.1", default-features = false }
celestia-tendermint-proto = "0.32.1"
[patch.crates-io]
# Uncomment to apply local changes
#beetswap = { path = "../beetswap" }
#blockstore = { path = "../blockstore" }
#celestia-tendermint = { path = "../celestia-tendermint-rs/tendermint" }
#celestia-tendermint-proto = { path = "../celestia-tendermint-rs/proto" }
#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