2024-09-27 15:29:49 +03:00
|
|
|
[package]
|
|
|
|
|
name = "sequencer_rpc"
|
|
|
|
|
version = "0.1.0"
|
2025-09-04 14:38:41 +03:00
|
|
|
edition = "2024"
|
2024-09-27 15:29:49 +03:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
anyhow.workspace = true
|
|
|
|
|
serde_json.workspace = true
|
|
|
|
|
log.workspace = true
|
|
|
|
|
serde.workspace = true
|
2024-09-30 05:49:46 +03:00
|
|
|
actix-cors.workspace = true
|
|
|
|
|
futures.workspace = true
|
2025-10-23 17:33:25 +03:00
|
|
|
base58.workspace = true
|
|
|
|
|
hex = "0.4.3"
|
2025-07-22 08:40:04 -03:00
|
|
|
tempfile.workspace = true
|
2025-08-12 12:18:13 -03:00
|
|
|
base64.workspace = true
|
2024-09-27 15:29:49 +03:00
|
|
|
|
|
|
|
|
actix-web.workspace = true
|
2024-11-28 22:05:14 +02:00
|
|
|
tokio.workspace = true
|
2025-09-25 11:53:42 +03:00
|
|
|
borsh.workspace = true
|
2024-09-27 15:29:49 +03:00
|
|
|
|
2025-11-18 19:31:03 +03:00
|
|
|
# TODO: Move to workspace
|
|
|
|
|
|
2024-09-27 15:29:49 +03:00
|
|
|
[dependencies.sequencer_core]
|
2024-09-30 05:49:46 +03:00
|
|
|
path = "../sequencer_core"
|
|
|
|
|
|
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-11-18 19:31:03 +03:00
|
|
|
|
|
|
|
|
[dependencies.mempool]
|
|
|
|
|
path = "../mempool"
|