-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathCargo.toml
45 lines (42 loc) · 1.27 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
39
40
41
42
43
44
45
[package]
name = "sendme"
version = "0.22.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"
# Sadly this also needs to be updated in .github/workflows/ci.yml
rust-version = "1.81"
[dependencies]
anyhow = "1.0.75"
async-channel = "2.3.1"
clap = { version = "4.4.10", features = ["derive"] }
console = "0.15.7"
derive_more = { version = "1.0.0", features = [
"display",
"from_str"
] }
futures-buffered = "0.2.4"
futures-lite = "2.3.0"
indicatif = "0.17.7"
iroh-blobs = { version = "0.31", features = ["net_protocol"] }
iroh-io = "0.6"
iroh = "0.31"
num_cpus = "1.16.0"
rand = "0.8.5"
serde = { version = "1", features = ["derive"] }
tokio = { version = "1.34.0", features = ["full"] }
tracing = "0.1.40"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"] }
walkdir = "2.4.0"
data-encoding = "2.6.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"