35 lines
958 B
TOML
35 lines
958 B
TOML
[package]
|
|
name = "file_transfer"
|
|
version = "4.3.0"
|
|
edition = "2021"
|
|
|
|
authors = ["Tim-Niclas Oelschläger <zokki.softwareschmiede@gmail.com>"]
|
|
description = "A FileTransfer API"
|
|
homepage = "https://ft.insodev.de"
|
|
repository = "https://gitea.insodev.de/zokki/FileTransferAPI"
|
|
keywords = ["rust", "api", "filetransfer", "fileupload", "actix"]
|
|
categories = ["networking", "web", "api"]
|
|
readme = "README.md"
|
|
license = "AGPL-3.0"
|
|
|
|
# @TODO
|
|
# documentation = "https://docs.example.com"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
actix-cors = "0.6.4"
|
|
actix-files = "0.6.2"
|
|
actix-multipart = "0.6.0"
|
|
actix-web = "4.3.1"
|
|
actix-web-httpauth = "0.8.0"
|
|
clap = { version = "4.3.1", features = ["derive", "env"] }
|
|
clokwerk = "0.4.0"
|
|
fs2 = "0.4.3"
|
|
http-auth-basic = "0.3.3"
|
|
mime_guess = "2.0.4"
|
|
rand = "0.8.5"
|
|
serde = { version = "1.0.171", features = ["derive"] }
|
|
serde_json = "1.0.103"
|
|
sha3 = "0.10.8"
|