miniserve/Cargo.toml

73 lines
1.8 KiB
TOML
Raw Normal View History

2018-04-26 17:32:25 +00:00
[package]
name = "miniserve"
version = "0.15.1-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]
2021-08-27 02:11:10 +00:00
actix-web = { version = "3", features = ["rustls"] }
2021-04-18 02:52:22 +00:00
actix-files = "0.5"
actix-multipart = "0.3"
actix-web-httpauth = "0.5"
maud = { version = "0.22", features = ["actix-web"] }
yansi = "0.5"
2021-03-28 20:46:32 +00:00
simplelog = "0.10"
2021-03-07 01:39:52 +00:00
percent-encoding = "2"
port_check = "0.1"
bytesize = "1"
nanoid = "0.4"
2021-03-07 01:39:52 +00:00
alphanumeric-sort = "1"
2019-09-03 23:27:36 +00:00
structopt = "0.3"
chrono = "0.4"
chrono-humanize = "0.2"
2021-03-07 01:39:52 +00:00
serde = { version = "1", features = ["derive"] }
tar = "0.4"
futures = "0.3"
2021-03-07 01:39:52 +00:00
libflate = "1"
2021-03-20 22:32:25 +00:00
thiserror = "1"
2021-08-27 02:11:10 +00:00
anyhow = "1"
log = "0.4"
2021-06-01 06:14:24 +00:00
strum = "0.21"
strum_macros = "0.21"
2020-06-26 09:50:10 +00:00
sha2 = "0.9"
hex = "0.4"
zip = "0.5.11"
2021-03-07 01:39:52 +00:00
qrcodegen = "1"
2020-09-24 02:39:19 +00:00
mime = "0.3"
httparse = "1"
http = "0.2"
bytes = "1"
atty = "0.2"
2021-08-27 02:11:10 +00:00
rustls = "0.18"
[dev-dependencies]
assert_cmd = "2"
2021-01-06 09:32:21 +00:00
reqwest = { version = "0.11", features = ["blocking", "multipart", "rustls-tls"], default-features = false }
2021-03-07 01:39:52 +00:00
assert_fs = "1"
select = "0.5"
rstest = "0.11"
2021-03-07 01:39:52 +00:00
regex = "1"
pretty_assertions = "0.7"
2021-03-07 01:39:52 +00:00
url = "2"
2021-08-27 02:11:10 +00:00
predicates = "2"
2020-09-26 21:07:24 +00:00
[build-dependencies]
grass = "0.10"
# This needs to stay here at least until https://github.com/abonander/mime_guess/pull/66 is merged.
# Also see https://github.com/svenstaro/miniserve/issues/160
[patch.crates-io]
mime_guess = { git = "https://github.com/svenstaro/mime_guess.git" }