-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
35 lines (31 loc) · 849 Bytes
/
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
[package]
name = "file-transfer-system"
version = "0.3.1"
edition = "2021"
license = "MIT"
repository = "https://github.com/Bicheka/file-transfer-system"
description = "File transfering, networking, and support for p2p"
keywords = ["p2p", "file", "tcp", "network"]
readme = "README.md"
[badges]
maintenance = { status = "actively-developed" }
[dependencies]
tokio = {version = "1.39.3", features = ["full"]}
serde = {version = "1.0.208", features = ["derive"]}
bincode = "1.3.3"
igd = "0.12.1"
local-ip-address = "0.6.1"
reqwest = { version = "0.12.7", default-features = false, features = ["rustls-tls"] }
serde_json = "1"
anyhow = "1.0.87"
futures = "0.3.30"
zip = "2.2.0"
walkdir = "2.5.0"
rayon = "1.10.0"
[dev-dependencies]
tokio-test = "0.4.4"
[features]
graceful-shutdown = ["p2p"]
p2p = []
[package.metadata.docs.rs]
all-features = true