From a0e83cd1ee46d79636b8ad737210e5d3bebcc4f1 Mon Sep 17 00:00:00 2001 From: Your Name Date: Sat, 7 Mar 2026 12:30:37 +0800 Subject: fileserver: HTTPS file server with drag-and-drop upload --- Cargo.toml | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 Cargo.toml (limited to 'Cargo.toml') diff --git a/Cargo.toml b/Cargo.toml new file mode 100644 index 0000000..0799fcf --- /dev/null +++ b/Cargo.toml @@ -0,0 +1,17 @@ +[package] +name = "fileserver" +edition = "2024" + +[dependencies] +axum = { version = "0.8", features = ["multipart"] } +tokio = { version = "1", features = ["full"] } +tokio-rustls = "0.26" +rustls = "0.23" +rcgen = "0.14" +hyper-util = { version = "0.1", features = ["tokio", "server-auto", "service"] } +rustls-pemfile = "2" +base64 = "0.22" +clap = { version = "4", features = ["derive"] } +libc = "0.2" +percent-encoding = "2.3" +mime_guess = "2" -- cgit