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