File tree Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Expand file tree Collapse file tree 1 file changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -12,9 +12,18 @@ readme = "README.md"
12
12
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
13
13
14
14
[dependencies ]
15
- bdk_chain = { path = " ../chain" , version = " 0.16.0" }
16
- electrum-client = { version = " 0.20" }
17
- # rustls = { version = "=0.21.1", optional = true, features = ["dangerous_configuration"] }
15
+ # Keeping the path here breaks the build when using the fork as a dependency; remove once #135 is merged
16
+ # and #1491 is ready to go in
17
+ # bdk_chain = { path = "../chain", version = "0.16.0" }
18
+ bdk_chain = { version = " 0.16.0" }
19
+ # Switch the lines below once https://github.com/bitcoindevkit/rust-electrum-client/pull/135 is merged and a new version is released
20
+ # electrum-client = { version = "0.21", default-features = false }
21
+ electrum-client = { git = " https://github.com/thunderbiscuit/rust-electrum-client/" , branch = " feature/rustls-ring" , default-features = false }
18
22
19
23
[dev-dependencies ]
20
24
bdk_testenv = { path = " ../testenv" , default-features = false }
25
+
26
+ [features ]
27
+ default = [" use-rustls" ]
28
+ use-rustls = [" electrum-client/proxy" , " electrum-client/use-rustls" ]
29
+ use-rustls-ring = [" electrum-client/use-rustls-ring" ]
You can’t perform that action at this time.
0 commit comments