[package]
edition = "2021"
rust-version = "1.89"
name = "dumbpipe"
version = "0.34.0"
authors = [
"RĂ¼diger Klaehn <rklaehn@protonmail.com>",
"n0 team",
]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A cli tool to pipe data over the network, with NAT hole punching"
readme = "README.md"
keywords = [
"netcat",
"cli",
"network",
"p2p",
"holepunching",
]
categories = ["network-programming"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/n0-computer/dumbpipe"
[lib]
name = "dumbpipe"
path = "src/lib.rs"
[[bin]]
name = "dumbpipe"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[dependencies.clap]
version = "4.4.10"
features = ["derive"]
[dependencies.data-encoding]
version = "2.9.0"
[dependencies.hex]
version = "0.4.3"
[dependencies.iroh]
version = "0.96"
default-features = false
[dependencies.iroh-tickets]
version = "0.3"
[dependencies.n0-error]
version = "0.1"
[dependencies.quinn]
version = "0.16"
package = "iroh-quinn"
[dependencies.rand]
version = "0.9.2"
[dependencies.tokio]
version = "1.34.0"
features = ["full"]
[dependencies.tokio-util]
version = "0.7.10"
[dependencies.tracing]
version = "0.1.40"
[dependencies.tracing-subscriber]
version = "0.3.20"
features = ["env-filter"]
[dev-dependencies.duct]
version = "0.13.6"
[dev-dependencies.nix]
version = "0.29"
features = [
"signal",
"process",
]
[dev-dependencies.tempfile]
version = "3.8"
[profile.release]
opt-level = "s"
lto = true
codegen-units = 1
debug = 0
panic = "abort"
strip = true