-
Notifications
You must be signed in to change notification settings - Fork 1
/
Cargo.toml
34 lines (31 loc) · 968 Bytes
/
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
[package]
name = "davisjr"
version = "0.4.3"
edition = "2021"
description = "davisjr is a HTTP framework designed around simplicity and ease-of-use"
authors = ["Erik Hollensbe <[email protected]>"]
license = "BSD-3-Clause"
homepage = "https://github.com/erikh/davisjr"
repository = "https://github.com/erikh/davisjr"
[dependencies]
hyper = { version = "^0.14", features = [ "http1", "http2", "server", "runtime", "tcp", "stream" ] }
http = "^0.2"
async-recursion = "^1"
tokio = { version = "^1", features = [ "full" ] }
tokio-rustls = { version = "^0.23", optional = true }
webpki = { version = "^0.22", optional = true }
log = { version = "^0.4", optional = true }
tracing = { version = "0.1", optional = true }
lazy_static = "^1"
serde_json = "^1"
anyhow = "^1"
[dev-dependencies]
log = "^0.4"
env_logger = "^0.10"
tracing-subscriber = "^0.3"
[features]
default = ["trace"]
logging = ["log"]
tls = ["tokio-rustls", "webpki"]
trace = ["tracing"]
unix = []