serai/processor/scanner/Cargo.toml

43 lines
1.6 KiB
TOML
Raw Normal View History

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>"]
keywords = []
2024-08-19 04:42:38 +00:00
edition = "2021"
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]
# Macros
async-trait = { version = "0.1", default-features = false }
2024-08-19 04:42:38 +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
# Cryptography
group = { version = "0.13", default-features = false }
2024-08-19 04:42:38 +00:00
# Application
2024-08-19 04:42:38 +00:00
log = { version = "0.4", default-features = false, features = ["std"] }
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"] }
serai-in-instructions-primitives = { path = "../../substrate/in-instructions/primitives", default-features = false, features = ["std", "borsh"] }
serai-coins-primitives = { path = "../../substrate/coins/primitives", default-features = false, features = ["std", "borsh"] }
2024-08-20 22:20:28 +00:00
primitives = { package = "serai-processor-primitives", path = "../primitives" }
scheduler-primitives = { package = "serai-processor-scheduler-primitives", path = "../scheduler/primitives" }