@@ -35,7 +35,7 @@ cargo new skyapp
3535First add this to your ` Cargo.toml ` file:
3636
3737``` toml
38- skytable = " 0.6.3 "
38+ skytable = " 0.7.0-alpha.1 "
3939```
4040
4141Now open up your ` src/main.rs ` file and establish a connection to the server while also adding some
@@ -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.6.3 " , features =[" aio" ], default-features = false }
135+ skytable = { version = " 0.7.0-alpha.1 " , 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.6.3 " , features =[" sync" , " aio" ] }
147+ skytable = { version =" 0.7.0-alpha.1 " , 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.6.3 " , features =[" sync" ," ssl" ] }
157+ skytable = { version =" 0.7.0-alpha.1 " , 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.6.3 " , features =[" aio" ," aio-ssl" ], default-features =false }
165+ skytable = { version =" 0.7.0-alpha.1 " , features =[" aio" ," aio-ssl" ], default-features =false }
166166```
167167
168168You can now use the async ` aio::TlsConnection ` object.
0 commit comments