Skip to content

Commit

Permalink
remove h1-server
Browse files Browse the repository at this point in the history
  • Loading branch information
Jzow committed Aug 20, 2023
1 parent e516491 commit 842c275
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion example/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,4 @@ schemars = "0.8.8"
tokio = { version = "1.19.2", features = ["full"] }

#summer
summer-boot = { version = "1.3", path = "../summer-boot" }
summer-boot = { version = "1.4", path = "../summer-boot" }
4 changes: 2 additions & 2 deletions summer-boot/src/tcp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ mod parsed;
mod tcp_listener;
mod to_listener;
mod to_listener_impls;
#[cfg(all(unix, feature = "h1-server"))]
#[cfg(unix)]
mod unix;

use std::fmt::{Debug, Display};
Expand All @@ -21,7 +21,7 @@ pub use to_listener::ToListener;

pub(crate) use parsed::ParsedListener;
pub(crate) use tcp_listener::TcpListener;
#[cfg(all(unix, feature = "h1-server"))]
#[cf(gunix)]
pub(crate) use unix::UnixListener;

#[macro_export]
Expand Down

0 comments on commit 842c275

Please sign in to comment.