You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -53,7 +53,7 @@ Pull requests are always welcome. See [Contributing](https://github.com/influxdb
53
53
Add the following to your `Cargo.toml`
54
54
55
55
```toml
56
-
influxdb = { version = "0.5.2", features = ["derive"] }
56
+
influxdb = { version = "0.6", features = ["derive"] }
57
57
```
58
58
59
59
For 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
113
113
114
114
-**[hyper](https://github.com/hyperium/hyper)** (through reqwest, used by default), with [rustls](https://github.com/ctz/rustls)
115
115
```toml
116
-
influxdb = { version = "0.5.2", features = ["derive"] }
116
+
influxdb = { version = "0.6", features = ["derive"] }
117
117
```
118
118
119
119
-**[hyper](https://github.com/hyperium/hyper)** (through reqwest), with native TLS (OpenSSL)
120
120
```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"] }
122
122
```
123
123
124
124
-**[hyper](https://github.com/hyperium/hyper)** (through surf), use this if you need tokio 0.2 compatibility
125
125
```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"] }
127
127
```
128
128
-**[curl](https://github.com/alexcrichton/curl-rust)**, using [libcurl](https://curl.se/libcurl/)
129
129
```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"] }
131
131
```
132
132
-**[async-h1](https://github.com/http-rs/async-h1)** with native TLS (OpenSSL)
133
133
```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"] }
135
135
```
136
136
-**[async-h1](https://github.com/http-rs/async-h1)** with [rustls](https://github.com/ctz/rustls)
137
137
```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"] }
139
139
```
140
140
- WebAssembly's `window.fetch`, via `web-sys` and **[wasm-bindgen](https://github.com/rustwasm/wasm-bindgen)**
141
141
```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"] }
Copy file name to clipboardExpand all lines: influxdb/src/lib.rs
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@
21
21
//! Add the following to your `Cargo.toml`
22
22
//!
23
23
//! ```toml
24
-
//! influxdb = { version = "0.5.2", features = ["derive"] }
24
+
//! influxdb = { version = "0.6", features = ["derive"] }
25
25
//! ```
26
26
//!
27
27
//! For an example with using Serde deserialization, please refer to [serde_integration](crate::integrations::serde_integration)
@@ -81,33 +81,33 @@
81
81
//!
82
82
//! - **[hyper](https://github.com/hyperium/hyper)** (through reqwest, used by default), with [rustls](https://github.com/ctz/rustls)
83
83
//! ```toml
84
-
//! influxdb = { version = "0.5.2", features = ["derive"] }
84
+
//! influxdb = { version = "0.6", features = ["derive"] }
85
85
//! ```
86
86
//!
87
87
//! - **[hyper](https://github.com/hyperium/hyper)** (through reqwest), with native TLS (OpenSSL)
88
88
//! ```toml
89
-
//! influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "reqwest-client"] }
89
+
//! influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "reqwest-client"] }
90
90
//! ```
91
91
//!
92
92
//! - **[hyper](https://github.com/hyperium/hyper)** (through surf), use this if you need tokio 0.2 compatibility
93
93
//! ```toml
94
-
//! influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "curl-client"] }
94
+
//! influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "curl-client"] }
95
95
//! ```
96
96
//! - **[curl](https://github.com/alexcrichton/curl-rust)**, using [libcurl](https://curl.se/libcurl/)
97
97
//! ```toml
98
-
//! influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "curl-client"] }
98
+
//! influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "curl-client"] }
99
99
//! ```
100
100
//! - **[async-h1](https://github.com/http-rs/async-h1)** with native TLS (OpenSSL)
101
101
//! ```toml
102
-
//! influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "h1-client"] }
102
+
//! influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "h1-client"] }
103
103
//! ```
104
104
//! - **[async-h1](https://github.com/http-rs/async-h1)** with [rustls](https://github.com/ctz/rustls)
105
105
//! ```toml
106
-
//! influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
106
+
//! influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "h1-client-rustls"] }
107
107
//! ```
108
108
//! - WebAssembly's `window.fetch`, via `web-sys` and **[wasm-bindgen](https://github.com/rustwasm/wasm-bindgen)**
109
109
//! ```toml
110
-
//! influxdb = { version = "0.5.2", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
110
+
//! influxdb = { version = "0.6", default-features = false, features = ["derive", "use-serde", "wasm-client"] }
0 commit comments