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: 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