[package] name = "bitcoin-serai" version = "0.3.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 ", "Vrx "] 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.8", 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", features = ["tests"] } tokio = { version = "1", features = ["full"] } [features] hazmat = []