From a4cf905d75ad7e09730b6d0aab5ef6cd2e735c2b Mon Sep 17 00:00:00 2001 From: =?utf8?q?=E5=BF=97=E5=AE=87?= Date: Thu, 26 Sep 2024 17:51:02 +0800 Subject: [PATCH] feat(file_store): rm `bdk_chain` dependency --- crates/file_store/Cargo.toml | 2 +- crates/file_store/src/store.rs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/file_store/Cargo.toml b/crates/file_store/Cargo.toml index 9c48b3dc..c9728941 100644 --- a/crates/file_store/Cargo.toml +++ b/crates/file_store/Cargo.toml @@ -14,7 +14,7 @@ readme = "README.md" workspace = true [dependencies] -bdk_chain = { path = "../chain", version = "0.19.0", features = [ "serde", "miniscript" ] } +bdk_core = { path = "../core", version = "0.2.0", features = ["serde"]} bincode = { version = "1" } serde = { version = "1", features = ["derive"] } diff --git a/crates/file_store/src/store.rs b/crates/file_store/src/store.rs index 62c3d91b..49ddc773 100644 --- a/crates/file_store/src/store.rs +++ b/crates/file_store/src/store.rs @@ -1,5 +1,5 @@ use crate::{bincode_options, EntryIter, FileError, IterError}; -use bdk_chain::Merge; +use bdk_core::Merge; use bincode::Options; use std::{ fmt::{self, Debug}, -- 2.49.0