Skip to content

Commit

Permalink
Revert "Add permessage-deflate support"
Browse files Browse the repository at this point in the history
This reverts commit edb2377.

See #328 (comment)
  • Loading branch information
daniel-abramov committed Mar 22, 2023
1 parent edb2377 commit 42b8797
Show file tree
Hide file tree
Showing 20 changed files with 346 additions and 1,172 deletions.
2 changes: 0 additions & 2 deletions .gitignore
@@ -1,4 +1,2 @@
target
Cargo.lock
autobahn/client/
autobahn/server/
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -10,6 +10,5 @@ before_script:

script:
- cargo test --release
- cargo test --release --features=deflate
- echo "Running Autobahn TestSuite for client" && ./scripts/autobahn-client.sh
- echo "Running Autobahn TestSuite for server" && ./scripts/autobahn-server.sh
14 changes: 0 additions & 14 deletions Cargo.toml
Expand Up @@ -25,15 +25,6 @@ native-tls-vendored = ["native-tls", "native-tls-crate/vendored"]
rustls-tls-native-roots = ["__rustls-tls", "rustls-native-certs"]
rustls-tls-webpki-roots = ["__rustls-tls", "webpki-roots"]
__rustls-tls = ["rustls", "webpki"]
deflate = ["flate2"]

[[example]]
name = "autobahn-client"
required-features = ["deflate"]

[[example]]
name = "autobahn-server"
required-features = ["deflate"]

[dependencies]
data-encoding = { version = "2", optional = true }
Expand All @@ -47,11 +38,6 @@ sha1 = { version = "0.10", optional = true }
thiserror = "1.0.23"
url = { version = "2.1.0", optional = true }
utf-8 = "0.7.5"
headers = { git = "https://github.com/kazk/headers", branch = "sec-websocket-extensions" }

[dependencies.flate2]
optional = true
version = "1.0"

[dependencies.native-tls-crate]
optional = true
Expand Down
2 changes: 2 additions & 0 deletions README.md
Expand Up @@ -72,6 +72,8 @@ Choose the one that is appropriate for your needs.
By default **no TLS feature is activated**, so make sure you use one of the TLS features,
otherwise you won't be able to communicate with the TLS endpoints.

There is no support for permessage-deflate at the moment, but the PRs are welcome :wink:

Testing
-------

Expand Down

0 comments on commit 42b8797

Please sign in to comment.