mirror of
https://github.com/tlsnotary/tlsn-utils.git
synced 2026-01-08 04:13:59 -05:00
* clippy fixes * fmt fixes * mirgrate to 2024 and fix workspace warning * fix profile * rustfmt --------- Co-authored-by: sinu <65924192+sinui0@users.noreply.github.com>
36 lines
1.0 KiB
TOML
36 lines
1.0 KiB
TOML
[package]
|
|
name = "uid-mux"
|
|
version = "0.2.0"
|
|
edition = "2024"
|
|
authors = ["TLSNotary Contributors"]
|
|
description = "Async multiplexing library with user provided stream ids."
|
|
keywords = ["multiplex", "futures", "async"]
|
|
categories = ["network-programming", "asynchronous"]
|
|
license = "MIT OR Apache-2.0"
|
|
repository = "https://github.com/tlsnotary/tlsn-utils"
|
|
|
|
[features]
|
|
default = ["tracing", "serio"]
|
|
tracing = ["dep:tracing"]
|
|
serio = ["dep:serio"]
|
|
test-utils = ["tokio/io-util", "dep:tokio-util"]
|
|
|
|
[dependencies]
|
|
async-trait = { workspace = true }
|
|
tokio = { workspace = true, features = ["sync"] }
|
|
futures = { workspace = true }
|
|
tracing = { workspace = true, optional = true }
|
|
yamux = "0.13"
|
|
blake3 = "1.5"
|
|
hex = "0.4"
|
|
serio = { version = "0.2", path = "../serio", optional = true }
|
|
tokio-util = { version = "0.7", features = ["compat"], optional = true }
|
|
|
|
[dev-dependencies]
|
|
tokio-util = { version = "0.7", features = ["compat"] }
|
|
tokio = { workspace = true, features = [
|
|
"io-util",
|
|
"rt-multi-thread",
|
|
"macros",
|
|
] }
|