Skip to content

Commit

Permalink
chore: update cargo.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
oyyd committed Jan 13, 2024
1 parent 97a77fa commit 5a12484
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name = "tokio_smux"
version = "0.1.0"
edition = "2021"
authors = ["Yadong Ouyang <oyydoibh@gmail.com>"]
description = "A kcp implementation for tokio"
description = "Smux protocol implementation in Rust, whichi provides stream multiplexing for reliable streams."
license = "MIT"
readme = "README.md"
keywords = ["smux", "tokio", "multiplexing", "muxing"]
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ Tokio_smux can work with tokio [TcpStream](https://docs.rs/tokio/latest/tokio/ne

See [examples](./examples)

## Smux Protocol Implementation Status
## Smux Protocol Implementation

The smux protocl version 2 is not yet supported.

## Why doesn't `Stream` of tokio_smux impl `AsyncRead` and `AysncWrite` itself?
**Why doesn't `Stream` of tokio_smux impl `AsyncRead` and `AysncWrite` itself?**

Becuase the smux protocol uses frames, means all user data transfered is wrapped in frames of fixed lengths. Similar to the websocket protocol.

Expand Down

0 comments on commit 5a12484

Please sign in to comment.