@@ -119,35 +119,41 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
119
119
120
120
- ** [ hyper] [ __link7 ] ** (through reqwest), with native TLS (OpenSSL)
121
121
```toml
122
- influxdb = { version = "0.7.2", default-features = false, features = ["derive", "use-serde", "reqwest-client"] }
122
+ influxdb = { version = "0.7.2", default-features = false, features = ["derive", "use-serde", "reqwest-client-native-tls "] }
123
123
```
124
124
125
125
126
- - ** [ hyper] [ __link8 ] ** (through surf), use this if you need tokio 0.2 compatibility
126
+ - ** [ hyper] [ __link8 ] ** (through reqwest), with vendored native TLS (OpenSSL)
127
+ ```toml
128
+ influxdb = { version = "0.7.2", default-features = false, features = ["derive", "use-serde", "reqwest-client-native-tls-vendored"] }
129
+ ```
130
+
131
+
132
+ - ** [ hyper] [ __link9 ] ** (through surf), use this if you need tokio 0.2 compatibility
127
133
```toml
128
134
influxdb = { version = "0.7.2", default-features = false, features = ["derive", "use-serde", "hyper-client"] }
129
135
```
130
136
131
137
132
- - ** [ curl] [ __link9 ] ** , using [ libcurl] [ __link10 ]
138
+ - ** [ curl] [ __link10 ] ** , using [ libcurl] [ __link11 ]
133
139
```toml
134
140
influxdb = { version = "0.7.2", default-features = false, features = ["derive", "use-serde", "curl-client"] }
135
141
```
136
142
137
143
138
- - ** [ async-h1] [ __link11 ] ** with native TLS (OpenSSL)
144
+ - ** [ async-h1] [ __link12 ] ** with native TLS (OpenSSL)
139
145
```toml
140
146
influxdb = { version = "0.7.2", default-features = false, features = ["derive", "use-serde", "h1-client"] }
141
147
```
142
148
143
149
144
- - ** [ async-h1] [ __link12 ] ** with [ rustls] [ __link13 ]
150
+ - ** [ async-h1] [ __link13 ] ** with [ rustls] [ __link14 ]
145
151
```toml
146
152
influxdb = { version = "0.7.2", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
147
153
```
148
154
149
155
150
- - WebAssembly’s ` window.fetch ` , via ` web-sys ` and ** [ wasm-bindgen] [ __link14 ] **
156
+ - WebAssembly’s ` window.fetch ` , via ` web-sys ` and ** [ wasm-bindgen] [ __link15 ] **
151
157
```toml
152
158
influxdb = { version = "0.7.2", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
153
159
```
@@ -157,29 +163,30 @@ To communicate with InfluxDB, you can choose the HTTP backend to be used configu
157
163
158
164
## License
159
165
160
- [ ![ License: MIT] [ __link15 ]] [ __link16 ]
166
+ [ ![ License: MIT] [ __link16 ]] [ __link17 ]
161
167
162
168
163
169
164
170
@ 2020-2024 Gero Gerke, msrd0 and [ contributors] .
165
171
166
172
[ contributors ] : https://github.com/influxdb-rs/influxdb-rust/graphs/contributors
167
- [ __cargo_doc2readme_dependencies_info ] : ggGkYW0BYXSEG_RDmlyxxvyrG0rwcLBKoYdvG5It9hbWNgjUGzjD8iBYfsFFYXKEG_jUEtkcTe33G_OOvfcbq3PhGx42EDLMgbCFGy0-H8MaqaBGYWSBgmhpbmZsdXhkYmUwLjcuMg
173
+ [ __cargo_doc2readme_dependencies_info ] : ggGkYW0BYXSEG_RDmlyxxvyrG0rwcLBKoYdvG5It9hbWNgjUGzjD8iBYfsFFYXKEG1DulEn7euxHG8tYaxMHih9OG3Xjpd76jUgIG23kKLUzm3NrYWSBgmhpbmZsdXhkYmUwLjcuMg
168
174
[ __link0 ] : https://github.com/influxdb-rs/influxdb-rust/blob/main/CONTRIBUTING.md
169
175
[ __link1 ] : https://github.com/influxdb-rs/influxdb-rust/blob/main/CODE_OF_CONDUCT.md
170
- [ __link10 ] : https://curl.se/libcurl/
171
- [ __link11 ] : https://github.com/http-rs/async-h1
176
+ [ __link10 ] : https://github.com/alexcrichton/curl-rust
177
+ [ __link11 ] : https://curl.se/libcurl/
172
178
[ __link12 ] : https://github.com/http-rs/async-h1
173
- [ __link13 ] : https://github.com/ctz/rustls
174
- [ __link14 ] : https://github.com/rustwasm/wasm-bindgen
175
- [ __link15 ] : https://img.shields.io/badge/License-MIT-yellow.svg
176
- [ __link16 ] : https://opensource.org/licenses/MIT
179
+ [ __link13 ] : https://github.com/http-rs/async-h1
180
+ [ __link14 ] : https://github.com/ctz/rustls
181
+ [ __link15 ] : https://github.com/rustwasm/wasm-bindgen
182
+ [ __link16 ] : https://img.shields.io/badge/License-MIT-yellow.svg
183
+ [ __link17 ] : https://opensource.org/licenses/MIT
177
184
[ __link2 ] : https://github.com/influxdb-rs/influxdb-rust/blob/main/CHANGELOG.md
178
185
[ __link3 ] : https://github.com/influxdb-rs/influxdb-rust/blob/main/influxdb/Cargo.toml
179
186
[ __link4 ] : https://docs.rs/influxdb/0.7.2/influxdb/?search=integrations::serde_integration
180
187
[ __link5 ] : https://github.com/hyperium/hyper
181
188
[ __link6 ] : https://github.com/ctz/rustls
182
189
[ __link7 ] : https://github.com/hyperium/hyper
183
190
[ __link8 ] : https://github.com/hyperium/hyper
184
- [ __link9 ] : https://github.com/alexcrichton/curl-rust
191
+ [ __link9 ] : https://github.com/hyperium/hyper
185
192
0 commit comments