File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 11[package ]
22name = " skytable"
3- version = " 0.3.0-alpha.4 "
3+ version = " 0.3.0"
44authors = [
" Sayan Nandan <[email protected] >" ]
55edition = " 2018"
66readme = " README.md"
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ cargo new skyapp
2323
2424First add this to your ` Cargo.toml ` file:
2525``` toml
26- skytable = " 0.3.0-alpha.4 "
26+ skytable = " 0.3.0"
2727```
2828Now open up your ` src/main.rs ` file and establish a connection to the server while also adding some
2929imports:
@@ -53,7 +53,7 @@ Way to go — you're all set! Now go ahead and run more advanced queries!
5353
5454If you need to use an ` async ` API, just change your import to:
5555``` toml
56- skytable = { version = " 0.3.0-alpha.4 " , features =[" async" ], default-features = false }
56+ skytable = { version = " 0.3.0" , features =[" async" ], default-features = false }
5757```
5858You can now establish a connection by using ` skytable::AsyncConnection::new() ` , adding ` .await ` s wherever
5959necessary. Do note that you'll the [ Tokio runtime] ( https://tokio.rs ) .
@@ -63,7 +63,7 @@ necessary. Do note that you'll the [Tokio runtime](https://tokio.rs).
6363With this client driver, it is possible to use both sync and ` async ` APIs ** at the same time** . To do
6464this, simply change your import to:
6565``` toml
66- skytable = { version =" 0.3.0-alpha.4 " , features =[" sync" , " async" ] }
66+ skytable = { version =" 0.3.0" , features =[" sync" , " async" ] }
6767```
6868
6969## Contributing
Original file line number Diff line number Diff line change 3838//!
3939//! First add this to your `Cargo.toml` file:
4040//! ```toml
41- //! skytable = "0.3.0-alpha.4 "
41+ //! skytable = "0.3.0"
4242//! ```
4343//! Now open up your `src/main.rs` file and establish a connection to the server while also adding some
4444//! imports:
7474//!
7575//! If you need to use an `async` API, just change your import to:
7676//! ```toml
77- //! skytable = { version = "0.3.0-alpha.4 ", features=["async"], default-features=false }
77+ //! skytable = { version = "0.3.0", features=["async"], default-features=false }
7878//! ```
7979//! You can now establish a connection by using `skytable::AsyncConnection::new()`, adding `.await`s wherever
8080//! necessary. Do note that you'll the [Tokio runtime](https://tokio.rs).
8484//! With this client driver, it is possible to use both sync and `async` APIs **at the same time**. To do
8585//! this, simply change your import to:
8686//! ```toml
87- //! skytable = { version="0.3.0-alpha.4 ", features=["sync", "async"] }
87+ //! skytable = { version="0.3.0", features=["sync", "async"] }
8888//! ```
8989//!
9090//! ## Contributing
You can’t perform that action at this time.
0 commit comments