miniserve/Cargo.toml

62 lines
1.5 KiB
TOML
Raw Normal View History

2018-04-26 17:32:25 +00:00
[package]
name = "miniserve"
version = "0.10.5-alpha.0"
2018-04-26 17:32:25 +00:00
description = "For when you really just want to serve some files over HTTP right now!"
2019-02-15 18:08:34 +00:00
authors = ["Sven-Hendrik Haase <svenstaro@gmail.com>", "Boastful Squirrel <boastful.squirrel@gmail.com>"]
2018-04-26 17:32:25 +00:00
repository = "https://github.com/svenstaro/miniserve"
license = "MIT"
readme = "README.md"
2018-05-17 15:29:00 +00:00
keywords = ["serve", "http-server", "static-files", "http", "server"]
categories = ["command-line-utilities", "network-programming", "web-programming::http-server"]
2018-12-10 15:38:41 +00:00
edition = "2018"
2018-04-26 17:32:25 +00:00
[profile.release]
lto = true
2019-02-27 23:43:37 +00:00
opt-level = 'z'
codegen-units = 1
panic = 'abort'
2018-04-26 17:32:25 +00:00
[dependencies]
2018-12-10 15:32:09 +00:00
yansi = "0.5"
actix-web = "3.3"
2020-12-28 04:35:20 +00:00
simplelog = "0.9"
percent-encoding = "2.1"
port_check = "0.1"
2019-02-02 11:41:09 +00:00
bytesize = "1.0.0"
2020-06-26 14:18:01 +00:00
nanoid = "0.3"
alphanumeric-sort = "1.4.0"
2019-09-03 23:27:36 +00:00
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"
2020-06-26 09:50:10 +00:00
sha2 = "0.9"
hex = "0.4.2"
zip = "0.5.10"
qrcodegen = "1.6.0"
2020-12-28 04:35:20 +00:00
actix-files = "0.5"
2020-09-11 23:57:53 +00:00
actix-multipart = "0.3.0"
actix-web-httpauth = "0.5.0"
2020-09-24 02:39:19 +00:00
mime = "0.3"
2021-02-21 08:55:17 +00:00
httparse = "1.3.5"
[dev-dependencies]
assert_cmd = "1.0"
2021-01-06 09:32:21 +00:00
reqwest = { version = "0.11", features = ["blocking", "multipart", "rustls-tls"], default-features = false }
assert_fs = "1.0"
select = "0.5"
2020-03-09 17:33:14 +00:00
rstest = "0.6"
regex = "1.4.3"
pretty_assertions = "0.6"
2020-11-08 23:16:04 +00:00
url = "2.2"
2020-09-26 21:07:24 +00:00
[build-dependencies]
grass = "0.10.4"