2023-09-19 17:29:23 -05:00
|
|
|
[package]
|
|
|
|
name = "bdk_sqlite"
|
|
|
|
version = "0.1.0"
|
|
|
|
edition = "2021"
|
|
|
|
license = "MIT OR Apache-2.0"
|
|
|
|
repository = "https://github.com/bitcoindevkit/bdk"
|
|
|
|
documentation = "https://docs.rs/bdk_sqlite"
|
2024-06-01 00:06:20 -05:00
|
|
|
description = "A simple SQLite based implementation of PersistBackend for Bitcoin Dev Kit."
|
2023-09-19 17:29:23 -05:00
|
|
|
keywords = ["bitcoin", "persist", "persistence", "bdk", "sqlite"]
|
|
|
|
authors = ["Bitcoin Dev Kit Developers"]
|
|
|
|
readme = "README.md"
|
|
|
|
|
|
|
|
[dependencies]
|
2024-05-23 11:15:30 -05:00
|
|
|
bdk_chain = { path = "../chain", version = "0.15.0", features = ["serde", "miniscript"] }
|
2023-09-19 17:29:23 -05:00
|
|
|
rusqlite = { version = "0.31.0", features = ["bundled"] }
|
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|