Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
fafhrd91 committed Mar 23, 2024
1 parent 6c56aef commit dff6fa1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion ntex/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ async-std = ["ntex-net/async-std"]

[dependencies]
ntex-codec = "0.6.2"
ntex-connect = "1.0.0"
ntex-connect = "1.1.0"
ntex-http = "0.1.12"
ntex-router = "0.5.3"
ntex-service = "2.0.1"
Expand Down
6 changes: 6 additions & 0 deletions ntex/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,12 @@ pub mod service {
pub mod server {
//! General purpose tcp server
pub use ntex_server::net::*;

#[cfg(feature = "openssl")]
pub use ntex_tls::openssl;

#[cfg(feature = "rustls")]
pub use ntex_tls::rustls;
}

pub mod time {
Expand Down

0 comments on commit dff6fa1

Please sign in to comment.