-
Notifications
You must be signed in to change notification settings - Fork 8
/
Cargo.toml
38 lines (36 loc) · 1.07 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
32
33
34
35
36
37
38
[package]
name = "sendme"
version = "0.20.0"
edition = "2021"
authors = ["Rüdiger Klaehn <[email protected]>", "n0 team"]
keywords = ["scp", "sftp", "network", "p2p", "holepunching"]
categories = ["network-programming"]
license = "Apache-2.0 OR MIT"
repository = "https://github.com/n0-computer/sendme"
description = "A cli tool to send directories over the network, with NAT hole punching"
readme = "README.md"
[dependencies]
anyhow = "1.0.75"
async-channel = "2.3.1"
base32 = "0.5.0"
clap = { version = "4.4.10", features = ["derive"] }
console = "0.15.7"
futures-buffered = "0.2.4"
futures-lite = "2.3.0"
hex = "0.4.3"
indicatif = "0.17.7"
iroh-blobs = { version = "0.29", features = ["net_protocol"] }
iroh-io = "0.6"
iroh = "0.29"
num_cpus = "1.16.0"
rand = "0.8.5"
tokio = { version = "1.34.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
walkdir = "2.4.0"
[dev-dependencies]
duct = "0.13.6"
nix = { version = "0.29", features = ["signal", "process"] }
rand = "0.8.5"
serde_json = "1.0.108"
tempfile = "3.8.1"