mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
28 lines
779 B
TOML
28 lines
779 B
TOML
[package]
|
|
name = "serai-client-bitcoin"
|
|
version = "0.1.0"
|
|
description = "A client for the Serai network's Bitcoin functionality"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/substrate/client/bitcoin"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>"]
|
|
keywords = ["serai", "bitcoin"]
|
|
edition = "2021"
|
|
rust-version = "1.85"
|
|
|
|
[package.metadata.docs.rs]
|
|
all-features = true
|
|
rustdoc-args = ["--cfg", "docsrs"]
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[dependencies]
|
|
borsh = { version = "1", default-features = false, features = ["derive"] }
|
|
|
|
serai-primitives = { path = "../../primitives", version = "0.1", default-features = false }
|
|
|
|
bitcoin = { version = "0.32", default-features = false }
|
|
|
|
[features]
|
|
std = ["borsh/std", "serai-primitives/std", "bitcoin/std"]
|