miniserve/Cargo.toml

59 lines
1.4 KiB
TOML
Raw Normal View History

2018-04-26 17:32:25 +00:00
[package]
name = "miniserve"
version = "0.8.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]
2018-12-10 15:32:09 +00:00
yansi = "0.5"
2020-07-17 20:26:31 +00:00
actix-web = "2.0"
simplelog = "0.8"
percent-encoding = "2.1"
port_check = "0.1"
2018-11-08 12:41:31 +00:00
htmlescape = "0.3.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.3.2"
2019-09-03 23:27:36 +00:00
structopt = "0.3"
chrono = "0.4.13"
2019-02-23 10:06:19 +00:00
chrono-humanize = "0.0.11"
2020-06-26 09:51:25 +00:00
maud = { version = "0.22.0", features = ["actix-web"] }
serde = { version = "1.0.110", features = ["derive"] }
tar = "0.4.27"
2020-07-17 20:26:31 +00:00
futures = "0.3.5"
libflate = "1.0.2"
failure = "0.1.8"
log = "0.4.11"
strum = "0.18.0"
2020-03-09 17:16:42 +00:00
strum_macros = "0.18.0"
2020-06-26 09:50:10 +00:00
sha2 = "0.9"
hex = "0.4.2"
zip = "0.5.5"
qrcodegen = "1.6.0"
2020-07-17 20:26:31 +00:00
actix-files = "0.2.2"
actix-multipart = "0.2.0"
actix-rt = "1.1.1"
actix-web-httpauth = "0.4.2"
[dev-dependencies]
assert_cmd = "1.0"
2020-03-11 14:18:15 +00:00
reqwest = { version = "0.10", features = ["blocking"] }
assert_fs = "1.0"
select = "0.5"
2020-03-09 17:33:14 +00:00
rstest = "0.6"
regex = "1.3.9"
pretty_assertions = "0.6"
url = "2.1"