summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
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"