@@ -53,7 +53,7 @@ Pull requests are always welcome. See [Contributing](https://github.com/influxdb
53
53
Add the following to your ` Cargo.toml `
54
54
55
55
``` toml
56
- influxdb = { version = " 0.5.2 " , features = [" derive" ] }
56
+ influxdb = { version = " 0.6 " , features = [" derive" ] }
57
57
```
58
58
59
59
For an example with using Serde deserialization, please refer to [ serde_integration] ( crate::integrations::serde_integration )
@@ -113,33 +113,33 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
113
113
114
114
- ** [ hyper] ( https://github.com/hyperium/hyper ) ** (through reqwest, used by default), with [ rustls] ( https://github.com/ctz/rustls )
115
115
``` toml
116
- influxdb = { version = " 0.5.2 " , features = [" derive" ] }
116
+ influxdb = { version = " 0.6 " , features = [" derive" ] }
117
117
```
118
118
119
119
- ** [ hyper] ( https://github.com/hyperium/hyper ) ** (through reqwest), with native TLS (OpenSSL)
120
120
``` toml
121
- influxdb = { version = " 0.5.2 " , default-features = false , features = [" derive" , " use-serde" , " reqwest-client" ] }
121
+ influxdb = { version = " 0.6 " , default-features = false , features = [" derive" , " use-serde" , " reqwest-client" ] }
122
122
```
123
123
124
124
- ** [ hyper] ( https://github.com/hyperium/hyper ) ** (through surf), use this if you need tokio 0.2 compatibility
125
125
``` toml
126
- influxdb = { version = " 0.5.2 " , default-features = false , features = [" derive" , " use-serde" , " curl-client" ] }
126
+ influxdb = { version = " 0.6 " , default-features = false , features = [" derive" , " use-serde" , " curl-client" ] }
127
127
```
128
128
- ** [ curl] ( https://github.com/alexcrichton/curl-rust ) ** , using [ libcurl] ( https://curl.se/libcurl/ )
129
129
``` toml
130
- influxdb = { version = " 0.5.2 " , default-features = false , features = [" derive" , " use-serde" , " curl-client" ] }
130
+ influxdb = { version = " 0.6 " , default-features = false , features = [" derive" , " use-serde" , " curl-client" ] }
131
131
```
132
132
- ** [ async-h1] ( https://github.com/http-rs/async-h1 ) ** with native TLS (OpenSSL)
133
133
``` toml
134
- influxdb = { version = " 0.5.2 " , default-features = false , features = [" derive" , " use-serde" , " h1-client" ] }
134
+ influxdb = { version = " 0.6 " , default-features = false , features = [" derive" , " use-serde" , " h1-client" ] }
135
135
```
136
136
- ** [ async-h1] ( https://github.com/http-rs/async-h1 ) ** with [ rustls] ( https://github.com/ctz/rustls )
137
137
``` toml
138
- influxdb = { version = " 0.5.2 " , default-features = false , features = [" derive" , " use-serde" , " h1-client-rustls" ] }
138
+ influxdb = { version = " 0.6 " , default-features = false , features = [" derive" , " use-serde" , " h1-client-rustls" ] }
139
139
```
140
140
- WebAssembly's ` window.fetch ` , via ` web-sys ` and ** [ wasm-bindgen] ( https://github.com/rustwasm/wasm-bindgen ) **
141
141
``` toml
142
- influxdb = { version = " 0.5.2 " , default-features = false , features = [" derive" , " use-serde" , " wasm-client" ] }
142
+ influxdb = { version = " 0.6 " , default-features = false , features = [" derive" , " use-serde" , " wasm-client" ] }
143
143
```
144
144
145
145
## License
0 commit comments