@@ -35,7 +35,7 @@ cargo new skyapp
3535First add this to your ` Cargo.toml ` file:
3636
3737``` toml
38- skytable = " 0.7.0-alpha.3 "
38+ skytable = " 0.7.0-alpha.4 "
3939```
4040
4141Now open up your ` src/main.rs ` file and establish a connection to the server while also adding some
@@ -120,7 +120,7 @@ assert!(con.set("bindata", mybinarydata).unwrap());
120120Now that you know how you can run basic queries, check out the [ ` actions ` ] module documentation for learning
121121to use actions and the [ ` types ` ] module documentation for implementing your own Skyhash serializable
122122types. Need to meddle with DDL queries like creating and dropping tables? Check out the [ ` ddl ` ] module.
123- You can also find some [ examples here] ( https://github.com/skytable/client-rust/tree/v0.7.0-alpha.3 /examples )
123+ You can also find some [ examples here] ( https://github.com/skytable/client-rust/tree/v0.7.0-alpha.4 /examples )
124124
125125## Connection pooling
126126
@@ -132,7 +132,7 @@ and information.
132132If you need to use an ` async ` API, just change your import to:
133133
134134``` toml
135- skytable = { version = " 0.7.0-alpha.3 " , features =[" aio" ], default-features = false }
135+ skytable = { version = " 0.7.0-alpha.4 " , features =[" aio" ], default-features = false }
136136```
137137
138138You can now establish a connection by using ` skytable::AsyncConnection::new() ` , adding ` .await ` s wherever
@@ -144,7 +144,7 @@ With this client driver, it is possible to use both sync and `async` APIs **at t
144144this, simply change your import to:
145145
146146``` toml
147- skytable = { version =" 0.7.0-alpha.3 " , features =[" sync" , " aio" ] }
147+ skytable = { version =" 0.7.0-alpha.4 " , features =[" sync" , " aio" ] }
148148```
149149
150150## TLS
@@ -154,15 +154,15 @@ If you need to use TLS features, this crate will let you do so with OpenSSL.
154154### Using TLS with sync interfaces
155155
156156``` toml
157- skytable = { version =" 0.7.0-alpha.3 " , features =[" sync" ," ssl" ] }
157+ skytable = { version =" 0.7.0-alpha.4 " , features =[" sync" ," ssl" ] }
158158```
159159
160160You can now use the async ` sync::TlsConnection ` object.
161161
162162### Using TLS with async interfaces
163163
164164``` toml
165- skytable = { version =" 0.7.0-alpha.3 " , features =[" aio" ," aio-ssl" ], default-features =false }
165+ skytable = { version =" 0.7.0-alpha.4 " , features =[" aio" ," aio-ssl" ], default-features =false }
166166```
167167
168168You can now use the async ` aio::TlsConnection ` object.
0 commit comments