File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ before_script:
10
10
script :
11
11
- cargo test
12
12
- cargo test --features "uuid rustc-serialize time unix_socket serde chrono openssl"
13
- - cargo doc --no-deps --features "unix_socket"
13
+ - cargo doc --no-deps --features "unix_socket openssl "
14
14
after_success :
15
15
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && test $TRAVIS_RUST_VERSION == "nightly" && ./.travis/update_docs.sh
16
16
env :
Original file line number Diff line number Diff line change @@ -17,6 +17,9 @@ pub trait StreamWrapper: Read+Write+Send {
17
17
}
18
18
19
19
/// A trait implemented by types that can negotiate SSL over a Postgres stream.
20
+ ///
21
+ /// If the `openssl` Cargo feature is enabled, this trait will be implemented
22
+ /// for `openssl::ssl::SslContext`.
20
23
pub trait NegotiateSsl {
21
24
/// Negotiates an SSL session, returning a wrapper around the provided
22
25
/// stream.
You can’t perform that action at this time.
0 commit comments