diff options
Diffstat (limited to 'Cargo.toml')
| -rw-r--r-- | Cargo.toml | 17 |
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] | ||
| 2 | name = "fileserver" | ||
| 3 | edition = "2024" | ||
| 4 | |||
| 5 | [dependencies] | ||
| 6 | axum = { version = "0.8", features = ["multipart"] } | ||
| 7 | tokio = { version = "1", features = ["full"] } | ||
| 8 | tokio-rustls = "0.26" | ||
| 9 | rustls = "0.23" | ||
| 10 | rcgen = "0.14" | ||
| 11 | hyper-util = { version = "0.1", features = ["tokio", "server-auto", "service"] } | ||
| 12 | rustls-pemfile = "2" | ||
| 13 | base64 = "0.22" | ||
| 14 | clap = { version = "4", features = ["derive"] } | ||
| 15 | libc = "0.2" | ||
| 16 | percent-encoding = "2.3" | ||
| 17 | mime_guess = "2" | ||
