Skip to content

Commit

Permalink
Remove tls feature from the list of default features
Browse files Browse the repository at this point in the history
TLS feature relies on the old version of openssl,
and since there is no clear way to upgrade to a new version, it is better to disable it all together
  • Loading branch information
Andrii Dmytrenko committed Jan 24, 2019
1 parent b99841e commit bb1fd14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]

name = "amqp"
version = "0.1.2"
version = "0.1.3"
authors = ["Andrii Dmytrenko <[email protected]>"]
description = "AMQP/RabbitMQ protocol client"
repository = "https://github.com/Antti/rust-amqp"
Expand All @@ -16,7 +16,7 @@ name = "amqp"

[features]
tls = ["openssl"]
default = ["tls"]
default = []

[dependencies]
env_logger = "0.3"
Expand Down

0 comments on commit bb1fd14

Please sign in to comment.