rammux 0.1.2

Asynchronous stream multiplexer
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

[package]
edition = "2024"
rust-version = "1.95.0"
name = "rammux"
version = "0.1.2"
authors = ["MichaƂ Smolarek <msmolarekg@gmail.com>"]
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Asynchronous stream multiplexer"
readme = "README.md"
keywords = [
    "multiplexer",
    "network",
    "protocol",
]
categories = ["network-programming"]
license = "MIT"
repository = "https://github.com/Razz4780/rammux"

[lib]
name = "rammux"
path = "src/lib.rs"

[[example]]
name = "downgrade"
path = "examples/downgrade.rs"

[[example]]
name = "flow_control"
path = "examples/flow_control.rs"

[[example]]
name = "heavy_io"
path = "examples/heavy_io.rs"

[[example]]
name = "negotiation"
path = "examples/negotiation.rs"

[dependencies.async-selector]
version = "0.3"

[dependencies.bitflags]
version = "2"

[dependencies.bytes]
version = "1"

[dependencies.futures]
version = "0.3"

[dependencies.rand]
version = "0.10"

[dependencies.slab]
version = "0.4"

[dependencies.static_assertions]
version = "1"

[dependencies.thiserror]
version = "2"

[dependencies.tokio]
version = "1"
features = [
    "net",
    "sync",
    "time",
]

[dev-dependencies.clap]
version = "4"
features = ["derive"]

[dev-dependencies.rstest]
version = "0.26"

[dev-dependencies.tokio]
version = "1"
features = [
    "full",
    "test-util",
]