mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 12:19:24 +00:00
Re-license bitcoin-serai to MIT
It's pretty basic code, yet would still be quite pleasant to the larger community. Also adds documentation.
This commit is contained in:
@@ -2,11 +2,10 @@
|
||||
name = "bitcoin-serai"
|
||||
version = "0.1.0"
|
||||
description = "A Bitcoin library for FROST-signing transactions"
|
||||
license = "AGPL-3.0-only"
|
||||
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"
|
||||
publish = false
|
||||
|
||||
[dependencies]
|
||||
lazy_static = "1"
|
||||
@@ -21,9 +20,12 @@ bitcoin = { version = "0.29", features = ["serde"] }
|
||||
|
||||
k256 = { version = "0.11", features = ["arithmetic"] }
|
||||
transcript = { package = "flexible-transcript", path = "../../crypto/transcript", version = "0.2", features = ["recommended"] }
|
||||
frost = { version = "0.5", package = "modular-frost", path = "../../crypto/frost", features = ["secp256k1", "tests"] }
|
||||
frost = { version = "0.5", package = "modular-frost", path = "../../crypto/frost", features = ["secp256k1"] }
|
||||
|
||||
hex = "0.4"
|
||||
serde = { version = "1", features = ["derive"] }
|
||||
serde_json = "1"
|
||||
reqwest = { version = "0.11", features = ["json"] }
|
||||
|
||||
[dev-dependencies]
|
||||
frost = { version = "0.5", package = "modular-frost", path = "../../crypto/frost", features = ["tests"] }
|
||||
|
||||
Reference in New Issue
Block a user