-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
33 lines (31 loc) · 1.01 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
[package]
authors = ["Mateo Radman <[email protected]>"]
name = "swift_file"
version = "0.1.9"
edition = "2021"
description = "Send or receive files between devices using Wi-Fi network"
license = "MIT"
documentation = "https://github.com/mateoradman/swift_file"
homepage = "https://github.com/mateoradman/swift_file"
repository = "https://github.com/mateoradman/swift_file"
keywords = ["cli", "file-transfer", "axum", "api"]
categories = ["command-line-utilities", "web-programming"]
[[bin]]
bench = false
name = "sf"
path = "src/main.rs"
[dependencies]
anyhow = "1.0.71"
async_zip = { version = "0.0.15", features = ["full"] }
axum = { version = "0.6.15", features = ["multipart"] }
chrono = "0.4.24"
clap = { version = "4.4.8", features = ["derive"] }
default-net = "0.21.0"
humansize = "2.1.3"
mime = "0.3.17"
new_mime_guess = "4.0.1"
opener = "0.6.1"
qrcode = "0.12.0"
tokio = { version = "1.27.0", features = ["full"] }
tokio-util = { version = "0.7.7", features = ["io"] }
uuid = { version = "1.3.1", features = ["v4"] }