Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
30 changes: 15 additions & 15 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ license = "Apache-2.0 AND MIT"
publish = false
repository = "https://github.com/gattaca-com/flux"
rust-version = "1.91.0"
version = "0.2.0"
version = "0.2.1"

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

think we merged already 0.3.0

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not yet 😄



[workspace.dependencies]
Expand Down
5 changes: 4 additions & 1 deletion crates/flux-network/src/tcp/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ mod network;
mod stream;

pub use connector::{PollEvent, SendBehavior, TcpConnector};
pub use network::{Framing, PayloadBuf, TcpEvent, TcpGroup, TcpGroupConfig, TcpNetwork};
pub use network::{
Framing, PayloadBuf, TcpEvent, TcpGroup, TcpGroupConfig, TcpNetwork, TcpNetworkCore,
TcpNetworkWithExternalPoll,
};
pub(crate) use stream::set_socket_buf_size;
pub use stream::{ConnState, TcpStream, TcpTelemetry};
Loading
Loading