@@ -55,7 +55,7 @@ Add the following to your `Cargo.toml`
55
55
56
56
57
57
``` toml
58
- influxdb = { version = " 0.7.1 " , features = [" derive" ] }
58
+ influxdb = { version = " 0.7.2 " , features = [" derive" ] }
59
59
```
60
60
61
61
For an example with using Serde deserialization, please refer to [ serde_integration] [ __link4 ]
@@ -115,43 +115,43 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
115
115
116
116
- ** [ hyper] [ __link5 ] ** (through reqwest, used by default), with [ rustls] [ __link6 ]
117
117
```toml
118
- influxdb = { version = "0.7.1 ", features = ["derive"] }
118
+ influxdb = { version = "0.7.2 ", features = ["derive"] }
119
119
```
120
120
121
121
122
122
- ** [ hyper] [ __link7 ] ** (through reqwest), with native TLS (OpenSSL)
123
123
```toml
124
- influxdb = { version = "0.7.1 ", default-features = false,features = ["derive", "use-serde", "reqwest-client"] }
124
+ influxdb = { version = "0.7.2 ", default-features = false,features = ["derive", "use-serde", "reqwest-client"] }
125
125
```
126
126
127
127
128
128
- ** [ hyper] [ __link8 ] ** (through surf), use this if you need tokio 0.2 compatibility
129
129
```toml
130
- influxdb = { version = "0.7.1 ", default-features = false,features = ["derive", "use-serde", "hyper-client"] }
130
+ influxdb = { version = "0.7.2 ", default-features = false,features = ["derive", "use-serde", "hyper-client"] }
131
131
```
132
132
133
133
134
134
- ** [ curl] [ __link9 ] ** , using [ libcurl] [ __link10 ]
135
135
```toml
136
- influxdb = { version = "0.7.1 ", default-features = false,features = ["derive", "use-serde", "curl-client"] }
136
+ influxdb = { version = "0.7.2 ", default-features = false,features = ["derive", "use-serde", "curl-client"] }
137
137
```
138
138
139
139
140
140
- ** [ async-h1] [ __link11 ] ** with native TLS (OpenSSL)
141
141
```toml
142
- influxdb = { version = "0.7.1 ", default-features = false,features = ["derive", "use-serde", "h1-client"] }
142
+ influxdb = { version = "0.7.2 ", default-features = false,features = ["derive", "use-serde", "h1-client"] }
143
143
```
144
144
145
145
146
146
- ** [ async-h1] [ __link12 ] ** with [ rustls] [ __link13 ]
147
147
```toml
148
- influxdb = { version = "0.7.1 ", default-features = false,features = ["derive", "use-serde", "h1-client-rustls"] }
148
+ influxdb = { version = "0.7.2 ", default-features = false,features = ["derive", "use-serde", "h1-client-rustls"] }
149
149
```
150
150
151
151
152
152
- WebAssembly’s ` window.fetch ` , via ` web-sys ` and ** [ wasm-bindgen] [ __link14 ] **
153
153
```toml
154
- influxdb = { version = "0.7.1 ", default-features = false,features = ["derive", "use-serde", "wasm-client"] }
154
+ influxdb = { version = "0.7.2 ", default-features = false,features = ["derive", "use-serde", "wasm-client"] }
155
155
```
156
156
157
157
@@ -166,7 +166,7 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
166
166
@ 2020 Gero Gerke and [ contributors] .
167
167
168
168
[ contributors ] : https://github.com/influxdb-rs/influxdb-rust/graphs/contributors
169
- [ __cargo_doc2readme_dependencies_info ] : ggGkYW0BYXSEG_Yk-0hvrVPoG-pGw0Sym8kbG2s5Ga25QGRAG6zgaYax6AfsYXKEGzTIyZ81-O7yGzBPOAorSf5GGwJWIVB6K85jG41Hl-f5lXJVYWSBgmhpbmZsdXhkYmUwLjcuMQ
169
+ [ __cargo_doc2readme_dependencies_info ] : ggGkYW0BYXSEG_Yk-0hvrVPoG-pGw0Sym8kbG2s5Ga25QGRAG6zgaYax6AfsYXKEG5FQA0msUh34G1V6qHa_8CeQG66nRf4Jd7PiG99LD0P5Tiz5YWSBgmhpbmZsdXhkYmUwLjcuMg
170
170
[ __link0 ] : https://github.com/influxdb-rs/influxdb-rust/blob/main/CONTRIBUTING.md
171
171
[ __link1 ] : https://github.com/influxdb-rs/influxdb-rust/blob/main/CODE_OF_CONDUCT.md
172
172
[ __link10 ] : https://curl.se/libcurl/
@@ -178,7 +178,7 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
178
178
[ __link16 ] : https://opensource.org/licenses/MIT
179
179
[ __link2 ] : https://github.com/influxdb-rs/influxdb-rust/blob/main/CHANGELOG.md
180
180
[ __link3 ] : https://github.com/influxdb-rs/influxdb-rust/blob/main/influxdb/Cargo.toml
181
- [ __link4 ] : https://docs.rs/influxdb/0.7.1 /influxdb/?search=integrations::serde_integration
181
+ [ __link4 ] : https://docs.rs/influxdb/0.7.2 /influxdb/?search=integrations::serde_integration
182
182
[ __link5 ] : https://github.com/hyperium/hyper
183
183
[ __link6 ] : https://github.com/ctz/rustls
184
184
[ __link7 ] : https://github.com/hyperium/hyper
0 commit comments