You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/getting-started.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -18,14 +18,14 @@ Most Rust projects use Cargo to download and build the libraries the code depend
18
18
19
19
```
20
20
[dependencies]
21
-
bdk = "0.20.0"
21
+
bdk = "0.28.1"
22
22
```
23
23
24
24
Or it is possible to install only the features that will be used in the project.
25
25
26
26
```
27
27
[dependencies]
28
-
bdk = { version = "0.20.0", default-feature = false, features = ["all-keys", "key-value-db", "rpc"] }
28
+
bdk = { version = "0.28.1", default-feature = false, features = ["all-keys", "key-value-db", "rpc"] }
29
29
```
30
30
31
31
BDK uses a set of [feature flags](https://doc.rust-lang.org/cargo/reference/manifest.html#the-features-section) to reduce the amount of compiled code by allowing projects to only enable the features they need.
@@ -74,7 +74,7 @@ To be able to run this code, the `bdk` dependency in `Cargo.toml` must be set as
74
74
75
75
```
76
76
[dependencies]
77
-
bdk = { version = "0.15.0", default-feature = false, features = ["all-keys"] }
77
+
bdk = { version = "0.28.1", default-feature = false, features = ["all-keys"] }
78
78
```
79
79
80
80
```rust
@@ -101,7 +101,7 @@ fn main() {
101
101
letxprv=xkey.into_xprv(network).unwrap();
102
102
103
103
// Create a BDK wallet structure using BIP 84 descriptor ("m/84h/1h/0h/0" and "m/84h/1h/0h/1")
0 commit comments