-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
30 lines (26 loc) · 977 Bytes
/
Cargo.toml
File metadata and controls
30 lines (26 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
[package]
name = "bdk_redb"
version = "0.1.0"
edition = "2024"
license = "MIT OR Apache-2.0"
description = "Persistence backend for bdk using redb"
repository = "https://github.com/110CodingP/bdk_redb"
readme = "README.md"
rust-version = "1.85.0"
[dependencies]
bdk_wallet = {git = "https://github.com/110CodingP/bdk_wallet", branch = "add_persist_test_utils", optional = true}
bdk_chain = {version = "0.23.0", features = ["serde"]}
ciborium = "0.2.2"
redb = "2.5.0"
thiserror = "2.0.12"
[features]
default = ["wallet"]
wallet = ["bdk_wallet"]
[dev-dependencies]
anyhow = "1.0.98"
bdk_testenv = { git = "https://github.com/110CodingP/bdk", branch = "add_persist_test_utils"}
tempfile = "3.20.0"
bdk_wallet = {git = "https://github.com/110CodingP/bdk_wallet", branch = "add_persist_test_utils", features = ["test-utils"]}
bdk_chain = {version = "0.23.0", features = ["serde"]}
[lints.rust]
unexpected_cfgs = { level = "warn", check-cfg = ['cfg(coverage,coverage_nightly)'] }