-
Notifications
You must be signed in to change notification settings - Fork 30
/
Cargo.toml
92 lines (76 loc) · 2.05 KB
/
Cargo.toml
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[package]
# "http" was taken, "https" (with 's' apparently standing for "server") is free
name = "https"
description = "Host These Things Please - a basic http server for hosting a folder fast and simply"
repository = "https://github.com/thecoshman/http"
readme = "README.md"
keywords = ["http", "server", "https", "webdav", "directory"]
categories = ["network-programming", "web-programming::http-server"]
license = "MIT"
build = "build.rs"
# Remember to also update in appveyor.yml and the http-crates.io branch
version = "2.1.0"
# Remember to also update in http.md
authors = ["thecoshman <[email protected]>",
"nabijaczleweli <[email protected]>",
"pheki",
"Adrian Herath <[email protected]>",
"cyqsimon",
"jim4067",
"Orhun Parmaksız <[email protected]>",
"Kian-Meng Ang <[email protected]>",
"Theodore Ni"]
[dependencies]
hyper-native-tls = "0.3"
percent-encoding = "2.1"
serde_json = "1.0"
mime_guess = "1.8"
tabwriter = "1.1"
arrayvec = "0.7"
walkdir = "2.2"
blake3 = "1.3"
flate2 = "1.0"
xml-rs = "0.8"
ctrlc = "3.1"
serde = "1.0"
clap = "2.33"
libc = "0.2"
time = "0.1"
[dependencies.trivial_colours]
version = "0.3"
default-features = false
[dependencies.rfsapi]
path = "vendor/rfsapi-0.2.0"
[dependencies.cidr]
version = "0.1"
default-features = false
[dependencies.brotli]
version = "6.0"
features = ["simd"]
[dependencies.iron]
path = "vendor/iron-0.6.1"
features = ["hyper-native-tls"]
[patch.crates-io.hyper]
path = "vendor/hyper-0.10.16"
[target.'cfg(target_os = "windows")'.dependencies.winapi]
version = "0.3"
features = ["fileapi"]
[build-dependencies]
embed-resource = "1.3"
base64 = "0.10"
[target.'cfg(not(any(target_os = "windows", target_os = "macos")))'.build-dependencies.cc]
version = "1.0"
[[bin]]
name = "http"
path = "src/main.rs"
test = false
doc = false
[[bin]]
name = "httplz"
path = "src/main.rs"
test = false
doc = false
[package.metadata.deb]
name = "http"
maintainer = "nabijaczleweli <[email protected]>"
section = "web"