miniserve/Cargo.toml
2021-02-24 21:33:42 +08:00

62 lines
1.5 KiB
TOML

[package]
name = "miniserve"
version = "0.10.5-alpha.0"
description = "For when you really just want to serve some files over HTTP right now!"
authors = ["Sven-Hendrik Haase <svenstaro@gmail.com>", "Boastful Squirrel <boastful.squirrel@gmail.com>"]
repository = "https://github.com/svenstaro/miniserve"
license = "MIT"
readme = "README.md"
keywords = ["serve", "http-server", "static-files", "http", "server"]
categories = ["command-line-utilities", "network-programming", "web-programming::http-server"]
edition = "2018"
[profile.release]
lto = true
opt-level = 'z'
codegen-units = 1
panic = 'abort'
[dependencies]
yansi = "0.5"
actix-web = "3.3"
simplelog = "0.9"
percent-encoding = "2.1"
port_check = "0.1"
bytesize = "1.0.0"
nanoid = "0.3"
alphanumeric-sort = "1.4.0"
structopt = "0.3"
chrono = "0.4.19"
chrono-humanize = "0.1.2"
maud = { version = "0.22.2", features = ["actix-web"] }
serde = { version = "1.0.123", features = ["derive"] }
tar = "0.4.33"
futures = "0.3.13"
libflate = "1.0.3"
failure = "0.1.8"
log = "0.4.14"
strum = "0.20.0"
strum_macros = "0.20.1"
sha2 = "0.9"
hex = "0.4.2"
zip = "0.5.10"
qrcodegen = "1.6.0"
actix-files = "0.5"
actix-multipart = "0.3.0"
actix-web-httpauth = "0.5.0"
mime = "0.3"
httparse = "1.3.5"
[dev-dependencies]
assert_cmd = "1.0"
reqwest = { version = "0.11", features = ["blocking", "multipart", "rustls-tls"], default-features = false }
assert_fs = "1.0"
select = "0.5"
rstest = "0.6"
regex = "1.4.3"
pretty_assertions = "0.6"
url = "2.2"
[build-dependencies]
grass = "0.10.4"