summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorYour Name <you@example.com>2026-03-07 12:30:37 +0800
committerYour Name <you@example.com>2026-03-07 12:30:37 +0800
commita0e83cd1ee46d79636b8ad737210e5d3bebcc4f1 (patch)
tree25d379ad9c1c89441fcdd10879b0039cbec9315d /Cargo.toml
fileserver: HTTPS file server with drag-and-drop upload
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml17
1 files changed, 17 insertions, 0 deletions
diff --git a/Cargo.toml b/Cargo.toml
new file mode 100644
index 0000000..0799fcf
--- /dev/null
+++ b/Cargo.toml
@@ -0,0 +1,17 @@
1[package]
2name = "fileserver"
3edition = "2024"
4
5[dependencies]
6axum = { version = "0.8", features = ["multipart"] }
7tokio = { version = "1", features = ["full"] }
8tokio-rustls = "0.26"
9rustls = "0.23"
10rcgen = "0.14"
11hyper-util = { version = "0.1", features = ["tokio", "server-auto", "service"] }
12rustls-pemfile = "2"
13base64 = "0.22"
14clap = { version = "4", features = ["derive"] }
15libc = "0.2"
16percent-encoding = "2.3"
17mime_guess = "2"