2024-09-05 02:39:41 +00:00
|
|
|
[package]
|
|
|
|
name = "serai-bitcoin-processor"
|
|
|
|
version = "0.1.0"
|
|
|
|
description = "Serai Bitcoin Processor"
|
|
|
|
license = "AGPL-3.0-only"
|
|
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/processor/bitcoin"
|
|
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
|
|
keywords = []
|
|
|
|
edition = "2021"
|
|
|
|
publish = false
|
|
|
|
|
|
|
|
[package.metadata.docs.rs]
|
|
|
|
all-features = true
|
|
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
|
|
|
|
[lints]
|
|
|
|
workspace = true
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
async-trait = { version = "0.1", default-features = false }
|
2024-09-10 07:48:06 +00:00
|
|
|
rand_core = { version = "0.6", default-features = false }
|
2024-09-05 02:39:41 +00:00
|
|
|
|
|
|
|
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-09-10 07:48:06 +00:00
|
|
|
transcript = { package = "flexible-transcript", path = "../../crypto/transcript", default-features = false, features = ["std", "recommended"] }
|
|
|
|
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["std", "secp256k1"] }
|
|
|
|
frost = { package = "modular-frost", path = "../../crypto/frost", default-features = false }
|
|
|
|
|
2024-09-05 02:39:41 +00:00
|
|
|
secp256k1 = { version = "0.29", default-features = false, features = ["std", "global-context", "rand-std"] }
|
|
|
|
bitcoin-serai = { path = "../../networks/bitcoin", default-features = false, features = ["std"] }
|
|
|
|
|
|
|
|
log = { version = "0.4", default-features = false, features = ["std"] }
|
|
|
|
env_logger = { version = "0.10", default-features = false, features = ["humantime"] }
|
|
|
|
tokio = { version = "1", default-features = false, features = ["rt-multi-thread", "sync", "time", "macros"] }
|
|
|
|
|
|
|
|
zalloc = { path = "../../common/zalloc" }
|
|
|
|
serai-db = { path = "../../common/db" }
|
|
|
|
serai-env = { path = "../../common/env" }
|
|
|
|
|
2024-09-10 07:48:06 +00:00
|
|
|
serai-client = { path = "../../substrate/client", default-features = false, features = ["bitcoin"] }
|
|
|
|
|
2024-09-05 02:39:41 +00:00
|
|
|
messages = { package = "serai-processor-messages", path = "../messages" }
|
|
|
|
|
2024-09-10 07:48:06 +00:00
|
|
|
primitives = { package = "serai-processor-primitives", path = "../primitives" }
|
|
|
|
scheduler = { package = "serai-processor-scheduler-primitives", path = "../scheduler/primitives" }
|
2024-09-10 11:07:09 +00:00
|
|
|
scanner = { package = "serai-processor-scanner", path = "../scanner" }
|
2024-09-11 04:01:40 +00:00
|
|
|
utxo-scheduler = { package = "serai-processor-utxo-scheduler-primitives", path = "../scheduler/utxo/primitives" }
|
|
|
|
transaction-chaining-scheduler = { package = "serai-processor-transaction-chaining-scheduler", path = "../scheduler/utxo/transaction-chaining" }
|
2024-09-11 04:48:52 +00:00
|
|
|
signers = { package = "serai-processor-signers", path = "../signers" }
|
2024-09-10 07:48:06 +00:00
|
|
|
|
2024-09-05 02:39:41 +00:00
|
|
|
message-queue = { package = "serai-message-queue", path = "../../message-queue" }
|
|
|
|
|
|
|
|
[features]
|
|
|
|
parity-db = ["serai-db/parity-db"]
|
|
|
|
rocksdb = ["serai-db/rocksdb"]
|