Skip to content

Commit cd9bdf6

Browse files
committed
Update examples
1 parent f43c2c6 commit cd9bdf6

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

examples/actions/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ edition = "2018"
88

99
[dependencies]
1010
# We use the `const-gen` feature to work with arrays; you can choose to leave it out
11-
skytable = { path = "../../", features = ["const-gen"] }
11+
skytable = { version = "0.5.0-alpha.2", features = ["const-gen"] }

examples/aio/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ edition = "2018"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
skytable = { path = "../../", features = [
9+
skytable = { version = "0.5.0-alpha.2", features = [
1010
"const-gen",
1111
"async",
1212
], default-features = false }

examples/basic/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ edition = "2018"
77
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
88

99
[dependencies]
10-
skytable = { path = "../../" }
10+
skytable = { version = "0.5.0-alpha.2" }

examples/custom-queries/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ edition = "2018"
66
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
77

88
[dependencies]
9-
skytable = { path = "../../" }
9+
skytable = { version = "0.5.0-alpha.2" }

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@
8888
//!
8989
//! Now that you know how you can run basic queries, check out the [`actions`] module documentation for learning
9090
//! to use actions and the [`types`] module documentation for implementing your own Skyhash serializable
91-
//! types.
91+
//! types. You can also find the [latest examples here](https://github.com/skytable/client-rust/tree/next/examples)
9292
//!
9393
//! ## Async API
9494
//!

0 commit comments

Comments
 (0)