2024-09-27 15:29:49 +03:00
|
|
|
[package]
|
|
|
|
|
name = "sequencer_core"
|
|
|
|
|
version = "0.1.0"
|
2025-09-04 14:38:41 +03:00
|
|
|
edition = "2024"
|
2024-09-27 15:29:49 +03:00
|
|
|
|
|
|
|
|
[dependencies]
|
2025-07-14 10:43:35 +03:00
|
|
|
hex.workspace = true
|
2024-09-27 15:29:49 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
|
serde.workspace = true
|
2024-11-25 07:26:16 +02:00
|
|
|
rand.workspace = true
|
2025-07-22 12:27:42 -03:00
|
|
|
tempfile.workspace = true
|
2025-09-03 10:29:51 +03:00
|
|
|
chrono.workspace = true
|
2025-09-04 15:15:14 +03:00
|
|
|
log.workspace = true
|
2025-09-18 15:59:17 +03:00
|
|
|
nssa-core = { path = "../nssa/core", features = ["host"] }
|
2024-10-10 14:09:31 +03:00
|
|
|
|
|
|
|
|
[dependencies.storage]
|
|
|
|
|
path = "../storage"
|
|
|
|
|
|
|
|
|
|
[dependencies.mempool]
|
2024-10-30 00:53:12 +01:00
|
|
|
path = "../mempool"
|
2024-11-25 07:26:16 +02:00
|
|
|
|
2025-04-16 16:17:53 +03:00
|
|
|
[dependencies.common]
|
|
|
|
|
path = "../common"
|
|
|
|
|
|
2025-08-07 15:19:06 -03:00
|
|
|
[dependencies.nssa]
|
|
|
|
|
path = "../nssa"
|
2025-09-04 17:05:12 -03:00
|
|
|
|
|
|
|
|
[features]
|
|
|
|
|
default = []
|
|
|
|
|
testnet = []
|