17 lines
418 B
TOML
17 lines
418 B
TOML
[package]
|
|
name = "file_transfer"
|
|
version = "1.0.0"
|
|
edition = "2021"
|
|
|
|
# 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"
|
|
clap = { version = "4.3.1", features = ["derive", "env"] }
|
|
clap-num = "1.0.2"
|
|
rand = "0.8.5"
|
|
serde = { version = "1.0.163", features = ["derive"]}
|