Skip to content

Commit e5aa4fe

Browse files
committed
Merge #1391: Fix cargo manifest for bdk_testenv
2580013 chore(testenv): fix cargo manifest (志宇) Pull request description: ### Description This will make the `bdk_testenv` crate actually publishable. ### Changelog notice * Fix cargo manifest of `bdk_testenv`. ### Checklists #### All Submissions: * [x] I've signed all my commits * [x] I followed the [contribution guidelines](https://github.com/bitcoindevkit/bdk/blob/master/CONTRIBUTING.md) * [x] I ran `cargo fmt` and `cargo clippy` before committing ACKs for top commit: LLFourn: ACK 2580013 Tree-SHA512: 52707450473713490cb1115af06747dc4d6f78cf4bf877cd3a246064af11786b5a89829731e911ffba19a71db9b19a60ad5b12f20871d57b296427761707d826
2 parents 380bc40 + 2580013 commit e5aa4fe

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

crates/testenv/Cargo.toml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22
name = "bdk_testenv"
33
version = "0.1.0"
44
edition = "2021"
5+
rust-version = "1.63"
6+
homepage = "https://bitcoindevkit.org"
7+
repository = "https://github.com/bitcoindevkit/bdk"
8+
documentation = "https://docs.rs/bdk_testenv"
9+
description = "Testing framework for BDK chain sources."
10+
license = "MIT OR Apache-2.0"
11+
readme = "README.md"
512

613
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
714

@@ -14,4 +21,4 @@ anyhow = { version = "1" }
1421
[features]
1522
default = ["std"]
1623
std = ["bdk_chain/std"]
17-
serde = ["bdk_chain/serde"]
24+
serde = ["bdk_chain/serde"]

0 commit comments

Comments
 (0)