Skip to content

Commit 8f2ae86

Browse files
authored
Merge pull request #708 from fanatid/patch-1
Fix tokio features for runtime feature in the docs
2 parents 90e8497 + 5099799 commit 8f2ae86

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

postgres-native-tls/src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//! TLS support for `tokio-postgres` and `postgres` via `native-tls.
1+
//! TLS support for `tokio-postgres` and `postgres` via `native-tls`.
22
//!
33
//! # Examples
44
//!

tokio-postgres/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@
103103
//!
104104
//! | Feature | Description | Extra dependencies | Default |
105105
//! | ------- | ----------- | ------------------ | ------- |
106-
//! | `runtime` | Enable convenience API for the connection process based on the `tokio` crate. | [tokio](https://crates.io/crates/tokio) 0.2 with the features `dns`, `net` and `time` | yes |
106+
//! | `runtime` | Enable convenience API for the connection process based on the `tokio` crate. | [tokio](https://crates.io/crates/tokio) 0.3 with the features `net` and `time` | yes |
107107
//! | `with-bit-vec-0_6` | Enable support for the `bit-vec` crate. | [bit-vec](https://crates.io/crates/bit-vec) 0.6 | no |
108108
//! | `with-chrono-0_4` | Enable support for the `chrono` crate. | [chrono](https://crates.io/crates/chrono) 0.4 | no |
109109
//! | `with-eui48-0_4` | Enable support for the `eui48` crate. | [eui48](https://crates.io/crates/eui48) 0.4 | no |
@@ -112,7 +112,7 @@
112112
//! | `with-serde_json-1` | Enable support for the `serde_json` crate. | [serde_json](https://crates.io/crates/serde_json) 1.0 | no |
113113
//! | `with-uuid-0_8` | Enable support for the `uuid` crate. | [uuid](https://crates.io/crates/uuid) 0.8 | no |
114114
//! | `with-time-0_2` | Enable support for the `time` crate. | [time](https://crates.io/crates/time) 0.2 | no |
115-
#![doc(html_root_url = "https://docs.rs/tokio-postgres/0.5")]
115+
#![doc(html_root_url = "https://docs.rs/tokio-postgres/0.6")]
116116
#![warn(rust_2018_idioms, clippy::all, missing_docs)]
117117

118118
pub use crate::cancel_token::CancelToken;

0 commit comments

Comments
 (0)