mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-26 13:39:37 +00:00
41 lines
1.6 KiB
TOML
41 lines
1.6 KiB
TOML
[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 = ["frost", "multisig", "threshold"]
|
|
edition = "2021"
|
|
rust-version = "1.79"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
# Macros
|
|
async-trait = { version = "0.1", default-features = false }
|
|
|
|
# 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"] }
|
|
|
|
# Cryptography
|
|
group = { version = "0.13", default-features = false }
|
|
|
|
# Application
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
|
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "sync", "time", "macros"] }
|
|
|
|
serai-db = { path = "../../common/db" }
|
|
|
|
serai-primitives = { path = "../../substrate/primitives", default-features = false, features = ["std"] }
|
|
serai-in-instructions-primitives = { path = "../../substrate/in-instructions/primitives", default-features = false, features = ["std"] }
|
|
serai-coins-primitives = { path = "../../substrate/coins/primitives", default-features = false, features = ["std", "borsh"] }
|
|
|
|
primitives = { package = "serai-processor-primitives", path = "../primitives" }
|