-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCargo.toml
50 lines (39 loc) · 1.17 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
[package]
name = "micro-web"
version = "0.1.0-alpha.8"
authors.workspace = true
edition.workspace = true
homepage.workspace = true
license.workspace = true
readme = "README.md"
keywords = ["http", "async", "web"]
categories = ["web-programming::http-server", "network-programming"]
description = "the async micro web framework"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
micro-http = "0.1.0-alpha.8"
http.workspace = true
http-body.workspace = true
http-body-util.workspace = true
mime.workspace = true
httpdate.workspace = true
serde.workspace = true
serde_urlencoded.workspace = true
serde_json.workspace = true
serde_qs.workspace = true
# compress lib, maybe we need to set as feature optional dependency:
flate2.workspace = true
zstd.workspace = true
brotli.workspace = true
tracing.workspace = true
tracing-subscriber.workspace = true
bytes.workspace = true
pin-project-lite.workspace = true
tokio = { workspace = true, features = ["time"] }
futures.workspace = true
async-trait.workspace = true
arc-swap.workspace = true
matchit.workspace = true
thiserror.workspace = true
[dev-dependencies]
mockall.workspace = true