1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
|
[package]
name = "miniserve"
version = "0.11.1-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"
http = "0.2.3"
bytes = "1"
[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"
|