mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-07 15:53:14 +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()
|
||||
run: |
|
||||
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:
|
||||
strategy:
|
||||
matrix:
|
||||
|
||||
34
Cargo.toml
34
Cargo.toml
@ -1,21 +1,21 @@
|
||||
[workspace]
|
||||
resolver = "2"
|
||||
members = [
|
||||
"node_runner",
|
||||
"sequencer_runner",
|
||||
"storage",
|
||||
"accounts",
|
||||
"utxo",
|
||||
"vm",
|
||||
"networking",
|
||||
"consensus",
|
||||
"node_rpc",
|
||||
"sequencer_rpc",
|
||||
"mempool",
|
||||
"zkvm",
|
||||
"node_core",
|
||||
"sequencer_core",
|
||||
"rpc_primitives",
|
||||
"node_runner",
|
||||
"sequencer_runner",
|
||||
"storage",
|
||||
"accounts",
|
||||
"utxo",
|
||||
"vm",
|
||||
"networking",
|
||||
"consensus",
|
||||
"node_rpc",
|
||||
"sequencer_rpc",
|
||||
"mempool",
|
||||
"zkvm",
|
||||
"node_core",
|
||||
"sequencer_core",
|
||||
"rpc_primitives",
|
||||
]
|
||||
|
||||
[workspace.dependencies]
|
||||
@ -38,7 +38,9 @@ monotree = "0.1.5"
|
||||
hex = "0.4.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
|
||||
|
||||
|
||||
@ -20,4 +20,4 @@ aes-gcm.workspace = true
|
||||
path = "../storage"
|
||||
|
||||
[dependencies.utxo]
|
||||
path = "../utxo"
|
||||
path = "../utxo"
|
||||
|
||||
@ -12,4 +12,4 @@ serde.workspace = true
|
||||
tokio.workspace = true
|
||||
|
||||
[dependencies.networking]
|
||||
path = "../networking"
|
||||
path = "../networking"
|
||||
|
||||
@ -8,4 +8,4 @@ anyhow.workspace = true
|
||||
serde_json.workspace = true
|
||||
env_logger.workspace = true
|
||||
log.workspace = true
|
||||
serde.workspace = true
|
||||
serde.workspace = true
|
||||
|
||||
@ -8,4 +8,4 @@ anyhow.workspace = true
|
||||
serde_json.workspace = true
|
||||
env_logger.workspace = true
|
||||
log.workspace = true
|
||||
serde.workspace = true
|
||||
serde.workspace = true
|
||||
|
||||
@ -11,4 +11,4 @@ log.workspace = true
|
||||
serde.workspace = true
|
||||
|
||||
[dependencies.storage]
|
||||
path = "../storage"
|
||||
path = "../storage"
|
||||
|
||||
@ -40,4 +40,4 @@ path = "../zkvm"
|
||||
path = "../node_core"
|
||||
|
||||
[dependencies.rpc_primitives]
|
||||
path = "../rpc_primitives"
|
||||
path = "../rpc_primitives"
|
||||
|
||||
@ -42,4 +42,4 @@ path = "../node_rpc"
|
||||
path = "../node_core"
|
||||
|
||||
[dependencies.rpc_primitives]
|
||||
path = "../rpc_primitives"
|
||||
path = "../rpc_primitives"
|
||||
|
||||
@ -1,2 +1,2 @@
|
||||
[toolchain]
|
||||
channel = "nightly"
|
||||
channel = "nightly"
|
||||
|
||||
@ -1 +1 @@
|
||||
edition = "2021"
|
||||
edition = "2021"
|
||||
|
||||
@ -14,4 +14,4 @@ serde.workspace = true
|
||||
path = "../storage"
|
||||
|
||||
[dependencies.mempool]
|
||||
path = "../mempool"
|
||||
path = "../mempool"
|
||||
|
||||
@ -28,4 +28,4 @@ path = "../networking"
|
||||
path = "../sequencer_core"
|
||||
|
||||
[dependencies.rpc_primitives]
|
||||
path = "../rpc_primitives"
|
||||
path = "../rpc_primitives"
|
||||
|
||||
@ -30,4 +30,4 @@ path = "../sequencer_rpc"
|
||||
path = "../sequencer_core"
|
||||
|
||||
[dependencies.rpc_primitives]
|
||||
path = "../rpc_primitives"
|
||||
path = "../rpc_primitives"
|
||||
|
||||
@ -15,4 +15,4 @@ thiserror.workspace = true
|
||||
rocksdb.workspace = true
|
||||
rs_merkle.workspace = true
|
||||
sha2.workspace = true
|
||||
monotree.workspace = true
|
||||
monotree.workspace = true
|
||||
|
||||
@ -13,4 +13,4 @@ monotree.workspace = true
|
||||
sha2.workspace = true
|
||||
|
||||
[dependencies.storage]
|
||||
path = "../storage"
|
||||
path = "../storage"
|
||||
|
||||
@ -8,4 +8,4 @@ anyhow.workspace = true
|
||||
serde_json.workspace = true
|
||||
env_logger.workspace = true
|
||||
log.workspace = true
|
||||
serde.workspace = true
|
||||
serde.workspace = true
|
||||
|
||||
@ -13,4 +13,4 @@ serde.workspace = true
|
||||
#ToDo: Add necessary risc0 dependencies
|
||||
|
||||
[dependencies.vm]
|
||||
path = "../vm"
|
||||
path = "../vm"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user