[[package]]
name = "bdk_redb"
version = "0.1.0"
-source = "git+https://github.com/110CodingP/bdk_redb#9985249c3f22489ccaf4ae09138fae950eca774b"
+source = "registry+https://github.com/rust-lang/crates.io-index"
+checksum = "f69a501c17da6d90243c112a6ad07955eadd5cd321da663283040b29e724c70d"
dependencies = [
"bdk_chain",
"bdk_wallet",
bdk_electrum = { version = "0.23.0", optional = true }
bdk_esplora = { version = "0.22.0", features = ["async-https", "tokio"], optional = true }
bdk_kyoto = { version = "0.11.0", optional = true }
-bdk_redb = { git = "https://github.com/110CodingP/bdk_redb", optional = true }
+bdk_redb = { version = "0.1.0", optional = true }
shlex = { version = "1.3.0", optional = true }
tracing = "0.1.41"
tracing-subscriber = "0.3.19"
use crate::error::BDKCliError;
use bdk_wallet::WalletPersister;
-pub enum Persister {
+// Types of Persistence backends supported by bdk-cli
+pub(crate) enum Persister {
#[cfg(feature = "sqlite")]
Connection(bdk_wallet::rusqlite::Connection),
#[cfg(feature = "redb")]