@@ -26,7 +26,7 @@ cargo new skyapp
2626First add this to your ` Cargo.toml ` file:
2727
2828``` toml
29- skytable = " 0.6.0 "
29+ skytable = " 0.6.1 "
3030```
3131
3232Now open up your ` src/main.rs ` file and establish a connection to the server while also adding some
@@ -118,7 +118,7 @@ You can also find the [latest examples here](https://github.com/skytable/client-
118118If you need to use an ` async ` API, just change your import to:
119119
120120``` toml
121- skytable = { version = " 0.6.0 " , features =[" async" ], default-features = false }
121+ skytable = { version = " 0.6.1 " , features =[" async" ], default-features = false }
122122```
123123
124124You can now establish a connection by using ` skytable::AsyncConnection::new() ` , adding ` .await ` s wherever
@@ -130,7 +130,7 @@ With this client driver, it is possible to use both sync and `async` APIs **at t
130130this, simply change your import to:
131131
132132``` toml
133- skytable = { version =" 0.6.0 " , features =[" sync" , " async" ] }
133+ skytable = { version =" 0.6.1 " , features =[" sync" , " async" ] }
134134```
135135
136136## TLS
@@ -140,15 +140,15 @@ If you need to use TLS features, this crate will let you do so with OpenSSL.
140140### Using TLS with sync interfaces
141141
142142``` toml
143- skytable = { version =" 0.6.0 " , features =[" sync" ," ssl" ] }
143+ skytable = { version =" 0.6.1 " , features =[" sync" ," ssl" ] }
144144```
145145
146146You can now use the async ` sync::TlsConnection ` object.
147147
148148### Using TLS with async interfaces
149149
150150``` toml
151- skytable = { version =" 0.6.0 " , features =[" async" ," aio-ssl" ], default-features =false }
151+ skytable = { version =" 0.6.1 " , features =[" async" ," aio-ssl" ], default-features =false }
152152```
153153
154154You can now use the async ` aio::TlsConnection ` object.
0 commit comments