Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(node): Upgrade blockstore and beetswap #259

Merged
merged 2 commits into from
Apr 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,6 @@ jobs:
- name: Test node-wasm crate
run: wasm-pack test --headless --chrome node-wasm

- name: Test blockstore crate
run: wasm-pack test --headless --chrome blockstore --all-features

- name: Build and pack node-wasm
run: wasm-pack build --release --target web node-wasm && wasm-pack pack node-wasm

Expand Down
12 changes: 4 additions & 8 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 2 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
[workspace]
resolver = "2"
members = ["blockstore", "cli", "node", "node-wasm", "proto", "rpc", "types"]
members = ["cli", "node", "node-wasm", "proto", "rpc", "types"]

[workspace.dependencies]
blockstore = "0.3"
lumina-node = { version = "0.1.0", path = "node" }
lumina-node-wasm = { version = "0.1.0", path = "node-wasm" }
celestia-proto = { version = "0.1.0", path = "proto" }
Expand All @@ -12,14 +13,12 @@ libp2p = "0.53.2"
nmt-rs = "0.1.0"
celestia-tendermint = { version = "0.32.1", default-features = false }
celestia-tendermint-proto = "0.32.1"
blockstore = { version = "0.1.1", path = "blockstore" }

[patch.crates-io]
# This is a workaround.
# `lumina-node` depends on `beetswap`, which depends on `blockstore`.
# Because `beetswap` is outside of this workspace, cargo thinks that
# it depends on a different `blockstore` crate.
blockstore = { path = "blockstore" }
# Uncomment to apply local changes
#celestia-tendermint = { path = "../celestia-tendermint-rs/tendermint" }
#celestia-tendermint-proto = { path = "../celestia-tendermint-rs/proto" }
Expand Down
21 changes: 0 additions & 21 deletions blockstore/CHANGELOG.md

This file was deleted.

57 changes: 0 additions & 57 deletions blockstore/Cargo.toml

This file was deleted.

43 changes: 0 additions & 43 deletions blockstore/README.md

This file was deleted.

36 changes: 0 additions & 36 deletions blockstore/src/block.rs

This file was deleted.

56 changes: 0 additions & 56 deletions blockstore/src/in_memory_blockstore.rs

This file was deleted.

Loading
Loading