miniserve/Cargo.toml

84 lines
2.5 KiB
TOML
Raw Normal View History

2018-04-26 17:32:25 +00:00
[package]
name = "miniserve"
2024-03-16 11:33:57 +00:00
version = "0.27.1"
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"]
2021-10-26 00:41:27 +00:00
edition = "2021"
2022-11-28 11:09:00 +00:00
resolver = "2"
2018-04-26 17:32:25 +00:00
[profile.release]
2022-08-11 03:25:18 +00:00
codegen-units = 1
lto = true
2019-02-27 23:43:37 +00:00
opt-level = 'z'
panic = 'abort'
2022-08-10 16:11:54 +00:00
strip = true
2018-04-26 17:32:25 +00:00
[dependencies]
actix-files = "0.6.5"
2024-01-03 01:45:18 +00:00
actix-multipart = "0.6"
2022-09-20 01:37:56 +00:00
actix-web = { version = "4", features = ["macros", "compress-brotli", "compress-gzip", "compress-zstd"], default-features = false }
2022-07-22 15:38:47 +00:00
actix-web-httpauth = "0.8"
2021-03-07 01:39:52 +00:00
alphanumeric-sort = "1"
2022-08-11 03:25:18 +00:00
anyhow = "1"
bytesize = "1"
chrono = "0.4"
chrono-humanize = "0.2"
clap = { version = "4", features = ["derive", "cargo", "wrap_help", "deprecated", "env"] }
2022-10-06 08:16:15 +00:00
clap_complete = "4"
clap_mangen = "0.2"
colored = "2"
2024-06-02 18:50:06 +00:00
comrak = { version = "0.24", default-features = false }
fast_qr = { version = "0.12", features = ["svg"] }
futures = "0.3"
2024-03-30 00:24:38 +00:00
grass = { version = "0.13", features = ["macro"], default-features = false }
2022-08-11 03:25:18 +00:00
hex = "0.4"
httparse = "1"
if-addrs = "0.12"
2023-07-19 12:04:07 +00:00
libflate = "2"
log = "0.4"
2024-06-02 18:50:06 +00:00
maud = "0.26"
2020-09-24 02:39:19 +00:00
mime = "0.3"
2022-08-11 03:25:18 +00:00
nanoid = "0.4"
percent-encoding = "2"
port_check = "0.2"
regex = "1"
2024-06-09 23:15:33 +00:00
rustls = { version = "0.23", features = ["ring"], optional = true, default-features = false }
2024-06-09 23:06:16 +00:00
rustls-pemfile = { version = "2", optional = true }
2022-08-11 03:25:18 +00:00
serde = { version = "1", features = ["derive"] }
sha2 = "0.10"
simplelog = "0.12"
2023-03-01 02:43:22 +00:00
socket2 = "0.5"
2024-01-28 04:13:15 +00:00
strum = { version = "0.26", features = ["derive"] }
2022-08-11 03:25:18 +00:00
tar = "0.4"
thiserror = "1"
tokio = { version = "1.35.1", features = ["fs"] }
zip = { version = "2", default-features = false }
[features]
default = ["tls"]
# This feature allows us to use rustls only on architectures supported by ring.
# See also https://github.com/briansmith/ring/issues/1182
# and https://github.com/briansmith/ring/issues/562
# and https://github.com/briansmith/ring/issues/1367
2024-06-09 23:06:16 +00:00
tls = ["rustls", "rustls-pemfile", "actix-web/rustls-0_23"]
[dev-dependencies]
assert_cmd = "2"
2021-03-07 01:39:52 +00:00
assert_fs = "1"
2023-03-25 01:13:21 +00:00
predicates = "3"
pretty_assertions = "1.2"
2022-09-01 12:20:27 +00:00
regex = "1"
2024-06-09 22:44:09 +00:00
reqwest = { version = "0.12", features = ["blocking", "multipart", "rustls-tls"], default-features = false }
2024-06-02 18:50:06 +00:00
rstest = "0.21"
2022-12-19 00:04:55 +00:00
select = "0.6"
2021-03-07 01:39:52 +00:00
url = "2"
2020-09-26 21:07:24 +00:00
2022-07-22 16:46:55 +00:00
[target.'cfg(not(windows))'.dev-dependencies]
# fake_tty does not support Windows for now
fake-tty = "0.3.1"