mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-17 09:27:36 +00:00
92ad689c7e
Since p256 now pulls in an extra crate with this update, the {k,p}256 imports disable default-features to prevent growing the tree.
37 lines
1.2 KiB
TOML
37 lines
1.2 KiB
TOML
[package]
|
|
name = "bitcoin-serai"
|
|
version = "0.2.0"
|
|
description = "A Bitcoin library for FROST-signing transactions"
|
|
license = "MIT"
|
|
repository = "https://github.com/serai-dex/serai/tree/develop/coins/bitcoin"
|
|
authors = ["Luke Parker <lukeparker5132@gmail.com>", "Vrx <vrx00@proton.me>"]
|
|
edition = "2021"
|
|
|
|
[dependencies]
|
|
lazy_static = "1"
|
|
thiserror = "1"
|
|
|
|
zeroize = "^1.5"
|
|
rand_core = "0.6"
|
|
|
|
sha2 = "0.10"
|
|
|
|
secp256k1 = { version = "0.27", features = ["global-context"] }
|
|
bitcoin = { version = "0.30", features = ["serde"] }
|
|
|
|
k256 = { version = "^0.13.1", default-features = false, features = ["std", "arithmetic", "bits"] }
|
|
transcript = { package = "flexible-transcript", path = "../../crypto/transcript", version = "0.3", features = ["recommended"] }
|
|
frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.7", features = ["secp256k1"] }
|
|
|
|
hex = "0.4"
|
|
serde = { version = "1", features = ["derive"] }
|
|
serde_json = "1"
|
|
reqwest = { version = "0.11", features = ["json"] }
|
|
|
|
[dev-dependencies]
|
|
frost = { package = "modular-frost", path = "../../crypto/frost", version = "0.7", features = ["tests"] }
|
|
|
|
tokio = { version = "1", features = ["full"] }
|
|
|
|
[features]
|
|
hazmat = []
|