2024-09-27 15:29:49 +03:00
|
|
|
[package]
|
|
|
|
|
name = "sequencer_core"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
|
|
[dependencies]
|
2025-07-14 10:43:35 +03:00
|
|
|
hex.workspace = true
|
2024-09-27 15:29:49 +03:00
|
|
|
anyhow.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
env_logger.workspace = true
|
|
|
|
|
log.workspace = true
|
|
|
|
|
serde.workspace = true
|
2024-11-25 07:26:16 +02:00
|
|
|
rand.workspace = true
|
2024-11-28 22:05:14 +02:00
|
|
|
elliptic-curve.workspace = true
|
|
|
|
|
k256.workspace = true
|
2025-07-25 10:00:27 +03:00
|
|
|
tiny-keccak.workspace = true
|
2025-07-22 12:27:42 -03:00
|
|
|
tempfile.workspace = true
|
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
|
|
|
|
|
|
|
|
[dependencies.accounts]
|
|
|
|
|
path = "../accounts"
|
2025-04-09 01:32:34 -04: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-04-09 01:32:34 -04:00
|
|
|
[dependencies.secp256k1-zkp]
|
|
|
|
|
workspace = true
|
2025-04-09 02:01:18 -04:00
|
|
|
features = ["std", "rand-std", "rand", "serde", "global-context"]
|