serai/processor/bitcoin/Cargo.toml

57 lines
2.6 KiB
TOML
Raw Normal View History

[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]
2024-09-10 07:48:06 +00:00
rand_core = { version = "0.6", default-features = false }
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-09-10 07:48:06 +00:00
transcript = { package = "flexible-transcript", path = "../../crypto/transcript", default-features = false, features = ["std", "recommended"] }
k256 = { version = "0.13", default-features = false, features = ["std"] }
2024-09-10 07:48:06 +00:00
ciphersuite = { path = "../../crypto/ciphersuite", default-features = false, features = ["std", "secp256k1"] }
2024-09-11 07:23:00 +00:00
dkg = { path = "../../crypto/dkg", default-features = false, features = ["std", "evrf-secp256k1"] }
2024-09-10 07:48:06 +00:00
frost = { package = "modular-frost", path = "../../crypto/frost", default-features = false }
secp256k1 = { version = "0.29", default-features = false, features = ["std", "global-context", "rand-std"] }
bitcoin-serai = { path = "../../networks/bitcoin", default-features = false, features = ["std"] }
2024-09-12 22:40:10 +00:00
serai-client = { path = "../../substrate/client", default-features = false, features = ["bitcoin"] }
zalloc = { path = "../../common/zalloc" }
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" }
2024-09-11 07:23:00 +00:00
key-gen = { package = "serai-processor-key-gen", path = "../key-gen" }
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
bin = { package = "serai-processor-bin", path = "../bin" }
[features]
parity-db = ["bin/parity-db"]
rocksdb = ["bin/rocksdb"]