tokio_dual_stack

Dual-stack TcpListener.
git clone https://git.philomathiclife.com/repos/tokio_dual_stack
Log | Files | Refs | README

Cargo.toml (775B)


      1 [package]
      2 authors = ["Zack Newman <zack@philomathiclife.com>"]
      3 categories = ["asynchronous", "network-programming"]
      4 description = "Dual-stack TCP listener based on tokio."
      5 documentation = "https://docs.rs/tokio_dual_stack/latest/tokio_dual_stack/"
      6 edition = "2024"
      7 keywords = ["ip", "listener", "tcp", "tokio"]
      8 license = "MIT OR Apache-2.0"
      9 name = "tokio_dual_stack"
     10 readme = "README.md"
     11 repository = "https://git.philomathiclife.com/repos/tokio_dual_stack/"
     12 rust-version = "1.85.0"
     13 version = "0.1.2"
     14 
     15 [dependencies]
     16 pin-project-lite = { version = "0.2.16", default-features = false }
     17 tokio = { version = "1.43.0", default-features = false, features = ["net"] }
     18 
     19 [dev-dependencies]
     20 tokio = { version = "1.43.0", default-features = false, features = ["macros", "net", "rt"] }