[package] name = "iroh-router" version = "0.28.0" edition = "2021" readme = "README.md" description = "protocol router support for iroh" license = "MIT OR Apache-2.0" authors = ["dignifiedquire ", "n0 team"] repository = "https://github.com/n0-computer/iroh" keywords = ["quic", "networking", "holepunching", "p2p"] [dependencies] anyhow = "1.0.91" futures-buffered = "0.2.9" futures-lite = "2.3.0" futures-util = "0.3.31" iroh-net = { version = "0.28.0", path = "../iroh-net" } tokio = "1.41.0" tokio-util = "0.7.12" tracing = "0.1.40" # Examples clap = { version = "4", features = ["derive"], optional = true } tracing-subscriber = { version = "0.3", features = ["env-filter"], optional = true } [lints] workspace = true [features] default = [] examples = ["dep:clap", "dep:tracing-subscriber"] [[example]] name = "custom-protocol" required-features = ["examples"]