commit
2cba81935d
|
@ -1,5 +1,11 @@
|
|||
|
||||
# 0.22.0 - 2019-12-11
|
||||
# 0.23.0 - 2020-01-07
|
||||
|
||||
- Update `secp256k1` dependency to `0.17.1`.
|
||||
- Update `bitcoinconsensus` dependency to `0.19.0-1`.
|
||||
- Update `bech32` dependency to `0.7.2`.
|
||||
|
||||
# 0.22.0 - 2020-01-07
|
||||
|
||||
- Add `ServiceFlags` type.
|
||||
- Add `NetworkMessage::command`.
|
||||
|
|
13
Cargo.toml
13
Cargo.toml
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "bitcoin"
|
||||
version = "0.22.0"
|
||||
version = "0.23.0"
|
||||
authors = ["Andrew Poelstra <apoelstra@wpsoftware.net>"]
|
||||
license = "CC0-1.0"
|
||||
homepage = "https://github.com/rust-bitcoin/rust-bitcoin/"
|
||||
|
@ -17,20 +17,21 @@ path = "src/lib.rs"
|
|||
[features]
|
||||
fuzztarget = ["secp256k1/fuzztarget", "bitcoin_hashes/fuzztarget"]
|
||||
unstable = []
|
||||
rand = ["secp256k1/rand"]
|
||||
rand = ["secp256k1/rand-std"]
|
||||
use-serde = ["hex", "serde", "bitcoin_hashes/serde", "secp256k1/serde"]
|
||||
|
||||
[dependencies]
|
||||
bech32 = "0.7.1"
|
||||
bech32 = "0.7.2"
|
||||
bitcoin_hashes = "0.7.3"
|
||||
bitcoinconsensus = { version = "0.17", optional = true }
|
||||
secp256k1 = "0.17.1"
|
||||
|
||||
bitcoinconsensus = { version = "0.19.0-1", optional = true }
|
||||
serde = { version = "1", optional = true }
|
||||
hex = { version = "=0.3.2", optional = true }
|
||||
secp256k1 = "0.15"
|
||||
|
||||
[dev-dependencies]
|
||||
hex = "=0.3.2"
|
||||
serde_derive = "<1.0.99"
|
||||
serde_json = "1"
|
||||
serde_test = "1"
|
||||
secp256k1 = { version = "0.15", features = ["rand"] }
|
||||
secp256k1 = { version = "0.17.1", features = ["rand-std"] }
|
||||
|
|
Loading…
Reference in New Issue