2024-09-27 15:29:49 +03:00
|
|
|
[package]
|
2026-03-10 14:58:06 +03:00
|
|
|
name = "sequencer_service"
|
2024-09-27 15:29:49 +03:00
|
|
|
version = "0.1.0"
|
2025-09-04 14:38:41 +03:00
|
|
|
edition = "2024"
|
2026-01-31 23:13:36 +04:00
|
|
|
license = { workspace = true }
|
2024-09-27 15:29:49 +03:00
|
|
|
|
2026-03-03 14:17:34 +03:00
|
|
|
[lints]
|
|
|
|
|
workspace = true
|
|
|
|
|
|
2024-09-27 15:29:49 +03:00
|
|
|
[dependencies]
|
2025-12-16 17:44:10 +03:00
|
|
|
common.workspace = true
|
2026-03-12 15:43:18 +03:00
|
|
|
nssa.workspace = true
|
|
|
|
|
nssa_core.workspace = true
|
|
|
|
|
mempool.workspace = true
|
|
|
|
|
borsh.workspace = true
|
2025-12-16 17:44:10 +03:00
|
|
|
sequencer_core = { workspace = true, features = ["testnet"] }
|
2026-03-12 15:43:18 +03:00
|
|
|
sequencer_service_rpc = { workspace = true, features = ["server"] }
|
2026-01-29 22:20:42 +03:00
|
|
|
indexer_service_rpc = { workspace = true, features = ["client"] }
|
2025-12-16 17:44:10 +03:00
|
|
|
|
|
|
|
|
clap = { workspace = true, features = ["derive", "env"] }
|
2024-09-27 15:29:49 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
|
env_logger.workspace = true
|
|
|
|
|
log.workspace = true
|
|
|
|
|
tokio.workspace = true
|
2026-03-12 15:43:18 +03:00
|
|
|
tokio-util.workspace = true
|
|
|
|
|
jsonrpsee.workspace = true
|
2026-01-29 22:20:42 +03:00
|
|
|
futures.workspace = true
|
2026-03-12 15:43:18 +03:00
|
|
|
bytesize.workspace = true
|
2026-02-17 18:33:29 -03:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
# Runs the sequencer in standalone mode without depending on Bedrock and Indexer services.
|
2026-03-12 15:43:18 +03:00
|
|
|
standalone = ["sequencer_core/mock"]
|