@@ -35,7 +35,7 @@ cargo new skyapp
35
35
First add this to your ` Cargo.toml ` file:
36
36
37
37
``` toml
38
- skytable = " 0.7.0-alpha.2 "
38
+ skytable = " 0.7.0-alpha.3 "
39
39
```
40
40
41
41
Now 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());
120
120
Now that you know how you can run basic queries, check out the [ ` actions ` ] module documentation for learning
121
121
to use actions and the [ ` types ` ] module documentation for implementing your own Skyhash serializable
122
122
types. 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.2 /examples )
123
+ You can also find some [ examples here] ( https://github.com/skytable/client-rust/tree/v0.7.0-alpha.3 /examples )
124
124
125
125
## Connection pooling
126
126
@@ -132,7 +132,7 @@ and information.
132
132
If you need to use an ` async ` API, just change your import to:
133
133
134
134
``` toml
135
- skytable = { version = " 0.7.0-alpha.2 " , features =[" aio" ], default-features = false }
135
+ skytable = { version = " 0.7.0-alpha.3 " , features =[" aio" ], default-features = false }
136
136
```
137
137
138
138
You 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
144
144
this, simply change your import to:
145
145
146
146
``` toml
147
- skytable = { version =" 0.7.0-alpha.2 " , features =[" sync" , " aio" ] }
147
+ skytable = { version =" 0.7.0-alpha.3 " , features =[" sync" , " aio" ] }
148
148
```
149
149
150
150
## TLS
@@ -154,15 +154,15 @@ If you need to use TLS features, this crate will let you do so with OpenSSL.
154
154
### Using TLS with sync interfaces
155
155
156
156
``` toml
157
- skytable = { version =" 0.7.0-alpha.2 " , features =[" sync" ," ssl" ] }
157
+ skytable = { version =" 0.7.0-alpha.3 " , features =[" sync" ," ssl" ] }
158
158
```
159
159
160
160
You can now use the async ` sync::TlsConnection ` object.
161
161
162
162
### Using TLS with async interfaces
163
163
164
164
``` toml
165
- skytable = { version =" 0.7.0-alpha.2 " , features =[" aio" ," aio-ssl" ], default-features =false }
165
+ skytable = { version =" 0.7.0-alpha.3 " , features =[" aio" ," aio-ssl" ], default-features =false }
166
166
```
167
167
168
168
You can now use the async ` aio::TlsConnection ` object.
0 commit comments