2024-08-19 04:42:38 +00:00
|
|
|
[package]
|
|
|
|
name = "serai-processor-scanner"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Scanner of abstract blockchains for Serai"
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor/scanner"
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
2024-09-05 02:50:02 +00:00
|
|
|
keywords = []
|
2024-08-19 04:42:38 +00:00
|
|
|
edition = "2021"
|
2024-09-05 02:50:02 +00:00
|
|
|
publish = false
|
2024-08-19 04:42:38 +00:00
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
2024-08-20 15:57:56 +00:00
|
|
|
# Macros
|
|
|
|
async-trait = { version = "0.1", default-features = false }
|
2024-08-19 04:42:38 +00:00
|
|
|
|
2024-08-20 15:57:56 +00:00
|
|
|
# Encoders
|
|
|
|
hex = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
scale = { package = "parity-scale-codec", version = "3", default-features = false, features = ["std"] }
|
|
|
|
borsh = { version = "1", default-features = false, features = ["std", "derive", "de_strict_order"] }
|
2024-08-19 04:42:38 +00:00
|
|
|
|
2024-08-20 15:57:56 +00:00
|
|
|
# Cryptography
|
|
|
|
group = { version = "0.13", default-features = false }
|
2024-08-19 04:42:38 +00:00
|
|
|
|
2024-08-20 15:57:56 +00:00
|
|
|
# Application
|
2024-08-19 04:42:38 +00:00
|
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
2024-08-20 15:57:56 +00:00
|
|
|
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "sync", "time", "macros"] }
|
2024-08-19 04:42:38 +00:00
|
|
|
|
|
|
|
serai-db = { path = "../../common/db" }
|
|
|
|
|
2024-08-20 22:20:28 +00:00
|
|
|
serai-primitives = { path = "../../substrate/primitives", default-features = false, features = ["std"] }
|
2024-08-24 01:21:02 +00:00
|
|
|
serai-in-instructions-primitives = { path = "../../substrate/in-instructions/primitives", default-features = false, features = ["std"] }
|
2024-09-01 05:55:04 +00:00
|
|
|
serai-coins-primitives = { path = "../../substrate/coins/primitives", default-features = false, features = ["std", "borsh"] }
|
2024-08-20 22:20:28 +00:00
|
|
|
|
2024-08-20 15:57:56 +00:00
|
|
|
primitives = { package = "serai-processor-primitives", path = "../primitives" }
|
2024-09-05 18:42:06 +00:00
|
|
|
scheduler-primitives = { package = "serai-processor-scheduler-primitives", path = "../scheduler/primitives" }
|