bdk_chain to 0.11.0 bdk_bitcoind_rpc to 0.6.0 bdk_electrum to 0.9.0 bdk_esplora to 0.9.0 bdk_file_store to 0.7.0
20 lines
640 B
TOML
20 lines
640 B
TOML
[package]
|
|
name = "bdk_file_store"
|
|
version = "0.7.0"
|
|
edition = "2021"
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/bitcoindevkit/bdk"
|
|
documentation = "https://docs.rs/bdk_file_store"
|
|
description = "A simple append-only flat file implementation of Persist for Bitcoin Dev Kit."
|
|
keywords = ["bitcoin", "persist", "persistence", "bdk", "file"]
|
|
authors = ["Bitcoin Dev Kit Developers"]
|
|
readme = "README.md"
|
|
|
|
[dependencies]
|
|
bdk_chain = { path = "../chain", version = "0.11.0", features = [ "serde", "miniscript" ] }
|
|
bincode = { version = "1" }
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3"
|