mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-25 21:19:35 +00:00
34 lines
1.3 KiB
TOML
34 lines
1.3 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]
|
||
|
rand_core = { version = "0.6", default-features = false, features = ["std", "getrandom"] }
|
||
|
|
||
|
frost = { package = "modular-frost", path = "../../crypto/frost", version = "^0.8.1", default-features = false }
|
||
|
|
||
|
serai-validator-sets-primitives = { path = "../../substrate/validator-sets/primitives", default-features = false, features = ["std"] }
|
||
|
|
||
|
hex = { version = "0.4", default-features = false, features = ["std"] }
|
||
|
log = { 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"] }
|
||
|
serai-db = { path = "../../common/db" }
|
||
|
|
||
|
messages = { package = "serai-processor-messages", path = "../messages" }
|