]> Untitled Git - bdk/commitdiff
feat(file_store): rm `bdk_chain` dependency
author志宇 <hello@evanlinjin.me>
Thu, 26 Sep 2024 09:51:02 +0000 (17:51 +0800)
committer志宇 <hello@evanlinjin.me>
Thu, 26 Sep 2024 09:51:02 +0000 (17:51 +0800)
crates/file_store/Cargo.toml
crates/file_store/src/store.rs

index 9c48b3dc5f08ddab465650c58b0324cf645ddebf..c9728941dcc6200114d2f54d7b7b34485cb9f8cd 100644 (file)
@@ -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"] }
 
index 62c3d91b666d0d92d73ae59f498cfc0dd09d1c9e..49ddc77316113bde4f50c1858dbfdecfcb6b3f9c 100644 (file)
@@ -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},