This commit updates the networking stack to use asynchronous I/O for improved performance and concurrency. We have replaced synchronous I/O calls with their asynchronous counterparts and refactored the code to use async/await and Tokio runtime.
28 lines
729 B
TOML
28 lines
729 B
TOML
[package]
|
|
name = "pallas-multiplexer"
|
|
description = "Multithreaded Ouroboros multiplexer implementation using mpsc channels"
|
|
version = "0.18.0"
|
|
edition = "2021"
|
|
repository = "https://github.com/txpipe/pallas"
|
|
homepage = "https://github.com/txpipe/pallas"
|
|
documentation = "https://docs.rs/pallas-multiplexer"
|
|
license = "Apache-2.0"
|
|
readme = "README.md"
|
|
authors = ["Santiago Carmuega <santiago@carmuega.me>"]
|
|
|
|
[dependencies]
|
|
pallas-codec = { version = "0.18.0", path = "../pallas-codec/" }
|
|
log = "0.4.14"
|
|
byteorder = "1.4.3"
|
|
hex = "0.4.3"
|
|
rand = "0.8.4"
|
|
thiserror = "1.0.31"
|
|
tracing = "0.1.37"
|
|
|
|
[features]
|
|
std = []
|
|
sync = []
|
|
default = ["std", "sync"]
|
|
|
|
[dev-dependencies]
|
|
tokio = { version = "1.27.0", features = ["macros", "rt"] }
|