@@ -53,7 +53,7 @@ Pull requests are always welcome. See [Contributing](https://github.com/influxdb
5353Add the following to your ` Cargo.toml `
5454
5555``` toml
56- influxdb = { version = " 0.5.2 " , features = [" derive" ] }
56+ influxdb = { version = " 0.6 " , features = [" derive" ] }
5757```
5858
5959For 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
113113
114114- ** [ hyper] ( https://github.com/hyperium/hyper ) ** (through reqwest, used by default), with [ rustls] ( https://github.com/ctz/rustls )
115115 ``` toml
116- influxdb = { version = " 0.5.2 " , features = [" derive" ] }
116+ influxdb = { version = " 0.6 " , features = [" derive" ] }
117117 ```
118118
119119- ** [ hyper] ( https://github.com/hyperium/hyper ) ** (through reqwest), with native TLS (OpenSSL)
120120 ``` 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" ] }
122122 ```
123123
124124- ** [ hyper] ( https://github.com/hyperium/hyper ) ** (through surf), use this if you need tokio 0.2 compatibility
125125 ``` 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" ] }
127127 ```
128128- ** [ curl] ( https://github.com/alexcrichton/curl-rust ) ** , using [ libcurl] ( https://curl.se/libcurl/ )
129129 ``` 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" ] }
131131 ```
132132- ** [ async-h1] ( https://github.com/http-rs/async-h1 ) ** with native TLS (OpenSSL)
133133 ``` 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" ] }
135135 ```
136136- ** [ async-h1] ( https://github.com/http-rs/async-h1 ) ** with [ rustls] ( https://github.com/ctz/rustls )
137137 ``` 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" ] }
139139 ```
140140- WebAssembly's ` window.fetch ` , via ` web-sys ` and ** [ wasm-bindgen] ( https://github.com/rustwasm/wasm-bindgen ) **
141141 ``` 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" ] }
143143 ```
144144
145145## License
0 commit comments