-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathCargo.toml
61 lines (57 loc) · 1.24 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
[package]
name = "operator"
version = "0.5.0"
authors = ["Matt Kantor <the.matt.kantor@gmail.com>"]
description = "A web server for static and dynamic content"
repository = "https://github.com/mkantor/operator"
homepage = "https://operator.mattkantor.com"
categories = [
"web-programming::http-server",
"command-line-utilities",
]
keywords = [
"web",
"server",
"http",
"templating",
"handlebars",
]
readme = "README.md"
license = "GPL-3.0"
edition = "2021"
include = [
"src/**/*",
"Cargo.toml",
"README.md",
# Ideally this would not be necessary, but when `cargo publish` verifies
# the package tarball it checks [[bench]] and fails without this.
"benches/**/*",
]
[dependencies]
actix-rt = "1.1.1"
actix-web = "3.3.3"
anyhow = "1.0.58"
bytes = "0.5.6"
futures = "0.3.21"
handlebars = "4.3.2"
log = "0.4.17"
mime = "0.3.16"
mime_guess = "2.0.4"
serde = { version = "1.0.139", features = ["derive"] }
serde_json = "1.0.82"
stderrlog = "0.5.3"
structopt = "0.3.26"
thiserror = "1.0.31"
walkdir = "2.3.2"
[dev-dependencies]
criterion = "0.3.6"
env_logger = "0.9.0"
insta = "1.15.0"
lazy_static = "1.4.0"
maplit = "1.0.2"
regex = "1.6.0"
tempfile = "3.3.0"
test-log = "0.2.10"
[[bench]]
name = "load_test"
harness = false