From 25800139124a37608c9da0a6ad76c22795f110d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BF=97=E5=AE=87?= Date: Wed, 27 Mar 2024 14:58:46 +0800 Subject: [PATCH] chore(testenv): fix cargo manifest --- crates/testenv/Cargo.toml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/crates/testenv/Cargo.toml b/crates/testenv/Cargo.toml index 61cd1694..46d4e177 100644 --- a/crates/testenv/Cargo.toml +++ b/crates/testenv/Cargo.toml @@ -2,6 +2,13 @@ name = "bdk_testenv" version = "0.1.0" edition = "2021" +rust-version = "1.63" +homepage = "https://bitcoindevkit.org" +repository = "https://github.com/bitcoindevkit/bdk" +documentation = "https://docs.rs/bdk_testenv" +description = "Testing framework for BDK chain sources." +license = "MIT OR Apache-2.0" +readme = "README.md" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html @@ -14,4 +21,4 @@ anyhow = { version = "1" } [features] default = ["std"] std = ["bdk_chain/std"] -serde = ["bdk_chain/serde"] \ No newline at end of file +serde = ["bdk_chain/serde"]