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/src/connecting/short-lived.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -27,13 +27,13 @@ let wallet = launch_provider_and_get_wallet().await?;
27
27
The `fuel-core-lib` feature allows us to run a `fuel-core` node without installing the `fuel-core` binary on the local machine. Using the `fuel-core-lib` feature flag entails downloading all the dependencies needed to run the fuel-core node.
28
28
29
29
```rust,ignore
30
-
fuels = { version = "0.50.0", features = ["fuel-core-lib"] }
30
+
fuels = { version = "0.50.1", features = ["fuel-core-lib"] }
31
31
```
32
32
33
33
### RocksDb
34
34
35
35
The `rocksdb` is an additional feature that, when combined with `fuel-core-lib`, provides persistent storage capabilities while using `fuel-core` as a library.
36
36
37
37
```rust,ignore
38
-
fuels = { version = "0.50.0", features = ["rocksdb"] }
38
+
fuels = { version = "0.50.1", features = ["rocksdb"] }
0 commit comments