-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathCargo.toml
31 lines (28 loc) · 1.02 KB
/
Cargo.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[package]
name = "dumbpipe"
version = "0.22.0"
edition = "2021"
authors = ["Rüdiger Klaehn <[email protected]>", "n0 team"]
keywords = ["netcat", "cli", "network", "p2p", "holepunching"]
categories = ["network-programming"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/n0-computer/dumbpipe"
description = "A cli tool to pipe data over the network, with NAT hole punching"
readme = "README.md"
# Sadly this also needs to be updated in .github/workflows/ci.yml
rust-version = "1.81"
[dependencies]
anyhow = "1.0.75"
clap = { version = "4.4.10", features = ["derive"] }
hex = "0.4.3"
iroh = { version = "0.30", default-features = false }
iroh-base = { version = "0.30", features = ["ticket"] }
quinn = { version = "0.12", package = "iroh-quinn" }
rand = "0.8.5"
tokio = { version = "1.34.0", features = ["full"] }
tokio-util = "0.7.10"
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
[dev-dependencies]
duct = "0.13.6"
nix = { version = "0.29", features = ["signal", "process"] }