mirror of
https://github.com/serai-dex/serai.git
synced 2024-12-26 13:39:37 +00:00
46 lines
1.8 KiB
TOML
46 lines
1.8 KiB
TOML
[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 }
|
|
|
|
const-hex = { version = "1", 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"] }
|
|
serde_json = { version = "1", default-features = false, features = ["std"] }
|
|
|
|
k256 = { version = "^0.13.1", default-features = false, features = ["std"] }
|
|
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" }
|
|
|
|
messages = { package = "serai-processor-messages", path = "../messages" }
|
|
|
|
message-queue = { package = "serai-message-queue", path = "../../message-queue" }
|
|
|
|
[features]
|
|
parity-db = ["serai-db/parity-db"]
|
|
rocksdb = ["serai-db/rocksdb"]
|