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