PagesServer/Cargo.toml

18 lines
473 B
TOML
Raw Normal View History

2022-03-27 11:22:52 +00:00
[package]
name = "pages_server"
version = "0.1.0"
edition = "2021"
2022-03-27 16:14:09 +00:00
license = "GPL-3.0-only"
2022-03-27 11:22:52 +00:00
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2022-04-23 00:16:47 +00:00
clap = { version = "3.1.12", features = ["derive", "env"] }
2022-03-27 11:44:53 +00:00
actix-web = "4"
actix-files = "0.6"
2022-03-27 12:13:44 +00:00
actix-multipart = "0.4"
2022-03-27 11:44:53 +00:00
env_logger = "0.9.0"
2022-03-27 12:13:44 +00:00
log = "0.4"
bytes = "1.1.0"
futures-util = { version = "0.3.21", default-features = false, features = ["std"] }
2022-03-27 12:13:44 +00:00
tar = "0.4.38"