From 9bd500f5f198df4dfc72a1f71c93f9b20d65431d Mon Sep 17 00:00:00 2001
From: Steve Myers <steve@notmandatory.org>
Date: Sun, 25 Aug 2024 12:19:36 -0500
Subject: [PATCH 1/2] chore(core): add missing README.md

---
 crates/core/README.md | 3 +++
 1 file changed, 3 insertions(+)
 create mode 100644 crates/core/README.md

diff --git a/crates/core/README.md b/crates/core/README.md
new file mode 100644
index 000000000..08eae24fa
--- /dev/null
+++ b/crates/core/README.md
@@ -0,0 +1,3 @@
+# BDK Core
+
+This crate is a collection of core structures used by the bdk_chain, bdk_wallet, and bdk chain data source crates.

From 48b6a66f6e0edce305d41653f37b8549aaf7c060 Mon Sep 17 00:00:00 2001
From: Steve Myers <steve@notmandatory.org>
Date: Sun, 25 Aug 2024 12:25:23 -0500
Subject: [PATCH 2/2] chore(core): remove bdk_chain dev-dependency version

---
 crates/core/Cargo.toml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crates/core/Cargo.toml b/crates/core/Cargo.toml
index 8220d70a2..5e27f768e 100644
--- a/crates/core/Cargo.toml
+++ b/crates/core/Cargo.toml
@@ -21,4 +21,4 @@ std = ["bitcoin/std"]
 serde = ["dep:serde", "bitcoin/serde", "hashbrown?/serde"]
 
 [dev-dependencies]
-bdk_chain = { version = "0.18.0", path = "../chain" }
+bdk_chain = { path = "../chain" }