@@ -52,7 +52,7 @@ Pull requests are always welcome. See [Contributing](https://github.com/influxdb
5252Add the following to your ` Cargo.toml `
5353
5454``` toml
55- influxdb = { version = " 0.5.1 " , features = [" derive" ] }
55+ influxdb = { version = " 0.5.2 " , features = [" derive" ] }
5656```
5757
5858For 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
105105
106106- ** [ hyper] ( https://github.com/hyperium/hyper ) ** (through reqwest, used by default), with [ rustls] ( https://github.com/ctz/rustls )
107107 ``` toml
108- influxdb = { version = " 0.5.1 " , features = [" derive" ] }
108+ influxdb = { version = " 0.5.2 " , features = [" derive" ] }
109109 ```
110110
111111- ** [ hyper] ( https://github.com/hyperium/hyper ) ** (through reqwest), with native TLS (OpenSSL)
112112 ``` toml
113- influxdb = { version = " 0.5.1 " , default-features = false , features = [" derive" , " use-serde" , " reqwest-client" ] }
113+ influxdb = { version = " 0.5.2 " , default-features = false , features = [" derive" , " use-serde" , " reqwest-client" ] }
114114 ```
115115
116116- ** [ hyper] ( https://github.com/hyperium/hyper ) ** (through surf), use this if you need tokio 0.2 compatibility
117117 ``` toml
118- influxdb = { version = " 0.5.1 " , default-features = false , features = [" derive" , " use-serde" , " curl-client" ] }
118+ influxdb = { version = " 0.5.2 " , default-features = false , features = [" derive" , " use-serde" , " curl-client" ] }
119119 ```
120120- ** [ curl] ( https://github.com/alexcrichton/curl-rust ) ** , using [ libcurl] ( https://curl.se/libcurl/ )
121121 ``` toml
122- influxdb = { version = " 0.5.1 " , default-features = false , features = [" derive" , " use-serde" , " curl-client" ] }
122+ influxdb = { version = " 0.5.2 " , default-features = false , features = [" derive" , " use-serde" , " curl-client" ] }
123123 ```
124124- ** [ async-h1] ( https://github.com/http-rs/async-h1 ) ** with native TLS (OpenSSL)
125125 ``` toml
126- influxdb = { version = " 0.5.1 " , default-features = false , features = [" derive" , " use-serde" , " h1-client" ] }
126+ influxdb = { version = " 0.5.2 " , default-features = false , features = [" derive" , " use-serde" , " h1-client" ] }
127127 ```
128128- ** [ async-h1] ( https://github.com/http-rs/async-h1 ) ** with [ rustls] ( https://github.com/ctz/rustls )
129129 ``` toml
130- influxdb = { version = " 0.5.1 " , default-features = false , features = [" derive" , " use-serde" , " h1-client-rustls" ] }
130+ influxdb = { version = " 0.5.2 " , default-features = false , features = [" derive" , " use-serde" , " h1-client-rustls" ] }
131131 ```
132132- WebAssembly's ` window.fetch ` , via ` web-sys ` and ** [ wasm-bindgen] ( https://github.com/rustwasm/wasm-bindgen ) **
133133 ``` toml
134- influxdb = { version = " 0.5.1 " , default-features = false , features = [" derive" , " use-serde" , " wasm-client" ] }
134+ influxdb = { version = " 0.5.2 " , default-features = false , features = [" derive" , " use-serde" , " wasm-client" ] }
135135 ```
136136
137137## License
0 commit comments