Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support OpenSSL 1.1.1 #461

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 4 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ version = "~0.10"

[dependencies.hyper-native-tls]
optional = true
version = "0.2.4"
version = "0.3"

[dependencies.lazy_static]
optional = true
Expand All @@ -54,7 +54,7 @@ version = "0.13"

[dependencies.native-tls]
optional = true
version = "0.1"
version = "0.2"

[dependencies.opus]
optional = true
Expand All @@ -74,11 +74,11 @@ version = "~1.7"
optional = true
version = "~0.3"

[dependencies.evzht9h3nznqzwl]
[dependencies.websocket]
default-features = false
features = ["sync-ssl"]
optional = true
version = "0.0.3"
version = "0.22"

[dev-dependencies.matches]
version = "0.1.6"
Expand Down Expand Up @@ -112,7 +112,6 @@ model = ["builder", "http"]
standard_framework = ["framework"]
utils = ["base64"]
voice = ["byteorder", "gateway", "opus", "sodiumoxide"]
websocket = ["evzht9h3nznqzwl"]

[package.metadata.docs.rs]
all-features = true
4 changes: 2 additions & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,8 +149,8 @@ extern crate sodiumoxide;
extern crate threadpool;
#[cfg(feature = "typemap")]
extern crate typemap;
#[cfg(feature = "evzht9h3nznqzwl")]
extern crate evzht9h3nznqzwl as websocket;
#[cfg(feature = "websocket")]
extern crate websocket;

#[allow(unused_imports)]
#[cfg(test)]
Expand Down