Skip to content

Commit

Permalink
Prepare for publish
Browse files Browse the repository at this point in the history
  • Loading branch information
connorslade committed Jul 2, 2023
1 parent c5307ed commit 8843f52
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 210 deletions.
3 changes: 2 additions & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 2.2.0

Coming Soon
July, 02, 2023

- Use binary search on ServeStatic MMIE types (save those clock cycles)
- Some optimizations throughout afire
Expand All @@ -15,6 +15,7 @@ Coming Soon
- Build extension docs on docs.rs
- Add a `TRACE` middleware that adds support for the HTTP TRACE method.
- Add support for [Server-Sent Events](https://developer.mozilla.org/en-US/docs/Web/API/Server-sent_events) (SSE).
- Progress on Websocket support

# 2.1.0

Expand Down
205 changes: 0 additions & 205 deletions examples/tmp.rs

This file was deleted.

1 change: 0 additions & 1 deletion lib/http/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,3 @@ pub mod multipart;
pub mod query;
pub mod server_sent_events;
pub mod status;
pub mod web_socket;
2 changes: 1 addition & 1 deletion lib/http/web_socket.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use std::{
net::TcpStream,
sync::{
mpsc::{self, Iter, Receiver, SyncSender},
Arc, Mutex,
Arc,
},
thread,
};
Expand Down
3 changes: 1 addition & 2 deletions lib/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ pub use self::{
cookie::{Cookie, SetCookie},
error::Error,
header::{Header, HeaderType},
http::{cookie, header, multipart, server_sent_events, web_socket},
http::{cookie, header, multipart, server_sent_events},
method::Method,
middleware::Middleware,
query::Query,
Expand All @@ -55,7 +55,6 @@ pub mod prelude {
error::{self, Error},
middleware::{MiddleResult, Middleware},
server_sent_events::ServerSentEventsExt,
web_socket::WebSocketExt,
Content, Cookie, Header, HeaderType, Method, Query, Request, Response, Server, SetCookie,
Status,
};
Expand Down

0 comments on commit 8843f52

Please sign in to comment.