mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-02 13:23:10 +00:00
31 lines
511 B
TOML
31 lines
511 B
TOML
[package]
|
|
name = "sequencer_core"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
[dependencies]
|
|
hex.workspace = true
|
|
anyhow.workspace = true
|
|
serde.workspace = true
|
|
rand.workspace = true
|
|
tempfile.workspace = true
|
|
chrono.workspace = true
|
|
log.workspace = true
|
|
nssa-core = { path = "../nssa/core", features = ["host"] }
|
|
|
|
[dependencies.storage]
|
|
path = "../storage"
|
|
|
|
[dependencies.mempool]
|
|
path = "../mempool"
|
|
|
|
[dependencies.common]
|
|
path = "../common"
|
|
|
|
[dependencies.nssa]
|
|
path = "../nssa"
|
|
|
|
[features]
|
|
default = []
|
|
testnet = []
|