Skip to content

Commit

Permalink
Fixed issue with only tcp feature enabled (#152)
Browse files Browse the repository at this point in the history
  • Loading branch information
lemunozm authored Apr 11, 2023
1 parent 8fddf26 commit 2f8efe1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## Release 0.15.1
- Fixed compilation issue when only `tcp` feature is enabled

## Release 0.15.0
- Configurable network adapters: [#141](https://github.com/lemunozm/message-io/pull/141)
- TCP keepalive configurable option: [#143](https://github.com/lemunozm/message-io/pull/143)
Expand Down
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "message-io"
version = "0.15.0"
version = "0.15.1"
authors = ["lemunozm <[email protected]>"]
edition = "2018"
readme = "README.md"
Expand All @@ -19,7 +19,7 @@ all-features = true

[features]
default = ["tcp", "udp", "websocket"] # All features by default
tcp = ["mio/net"]
tcp = ["mio/net", "socket2"]
udp = ["mio/net", "socket2"]
websocket = ["tungstenite", "url", "tcp"]

Expand Down

0 comments on commit 2f8efe1

Please sign in to comment.