From: 志宇 Date: Thu, 26 Sep 2024 09:51:02 +0000 (+0800) Subject: feat(file_store): rm `bdk_chain` dependency X-Git-Tag: v1.0.0-beta.5~4^2 X-Git-Url: http://internal-gitweb-vhost/script/%22https:/struct.EncoderStringWriter.html?a=commitdiff_plain;h=a4cf905d75ad7e09730b6d0aab5ef6cd2e735c2b;p=bdk feat(file_store): rm `bdk_chain` dependency --- 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},