-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathCargo.toml
More file actions
25 lines (22 loc) · 836 Bytes
/
Cargo.toml
File metadata and controls
25 lines (22 loc) · 836 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
[package]
name = "bdk_sqlx"
version = "0.0.1"
edition = "2021"
[dependencies]
bdk_wallet = { version = "1.2.0", features = ["test-utils"] }
serde = { version = "1.0.208", features = ["derive"] }
serde_json = "1.0.125"
sqlx = { version = "0.8.1", default-features = false, features = ["runtime-tokio", "tls-rustls-ring","derive", "postgres", "sqlite", "json", "chrono", "uuid", "sqlx-macros", "migrate"] }
thiserror = "1"
tokio = { version = "1.40.0", features = ["macros", "rt-multi-thread"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter", "serde_json", "json"] }
sqlx-postgres-tester = "0.1.1"
[dev-dependencies]
assert_matches = "1.5.0"
anyhow = "1.0.89"
bdk_electrum = { version = "0.20.1"}
rustls = "0.23.14"
[[example]]
name = "bdk_sqlx_postgres"
path = "examples/bdk_sqlx_postgres.rs"