mirror of
https://github.com/logos-blockchain/logos-execution-zone.git
synced 2026-08-11 07:23:16 +00:00
Merge branch 'main' into Pravdyvy/accounts-core
This commit is contained in:
commit
9c5dee8f37
9
.github/workflows/ci.yml
vendored
9
.github/workflows/ci.yml
vendored
@ -59,7 +59,14 @@ jobs:
|
|||||||
if: success() || failure()
|
if: success() || failure()
|
||||||
run: |
|
run: |
|
||||||
cargo clippy --release -- -D warnings
|
cargo clippy --release -- -D warnings
|
||||||
|
- name: install taplo
|
||||||
|
if: success() || failure()
|
||||||
|
run: |
|
||||||
|
cargo install taplo-cli --locked
|
||||||
|
- name: taplo fmt
|
||||||
|
if: success() || failure()
|
||||||
|
run: |
|
||||||
|
taplo fmt --check
|
||||||
test:
|
test:
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
|
|||||||
34
Cargo.toml
34
Cargo.toml
@ -1,21 +1,21 @@
|
|||||||
[workspace]
|
[workspace]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
members = [
|
members = [
|
||||||
"node_runner",
|
"node_runner",
|
||||||
"sequencer_runner",
|
"sequencer_runner",
|
||||||
"storage",
|
"storage",
|
||||||
"accounts",
|
"accounts",
|
||||||
"utxo",
|
"utxo",
|
||||||
"vm",
|
"vm",
|
||||||
"networking",
|
"networking",
|
||||||
"consensus",
|
"consensus",
|
||||||
"node_rpc",
|
"node_rpc",
|
||||||
"sequencer_rpc",
|
"sequencer_rpc",
|
||||||
"mempool",
|
"mempool",
|
||||||
"zkvm",
|
"zkvm",
|
||||||
"node_core",
|
"node_core",
|
||||||
"sequencer_core",
|
"sequencer_core",
|
||||||
"rpc_primitives",
|
"rpc_primitives",
|
||||||
]
|
]
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
@ -38,7 +38,9 @@ monotree = "0.1.5"
|
|||||||
hex = "0.4.3"
|
hex = "0.4.3"
|
||||||
aes-gcm = "0.10.3"
|
aes-gcm = "0.10.3"
|
||||||
|
|
||||||
rocksdb = { version = "0.21.0", default-features = false, features = ["snappy"] }
|
rocksdb = { version = "0.21.0", default-features = false, features = [
|
||||||
|
"snappy",
|
||||||
|
] }
|
||||||
|
|
||||||
#ToDo: Add necessary risc0 submodules for zkvm module
|
#ToDo: Add necessary risc0 submodules for zkvm module
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user