-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
38 lines (33 loc) · 827 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
35
36
37
38
[package]
name = "tower-http-metrics"
version = "0.0.3"
authors = ["Andrew Fuchs"]
edition = "2021"
rust-version = "1.59"
description = "Tower middleware for tracking HTTP server metrics"
documentation = "https://docs.rs/tower-http-metrics/latest/tower_http_metrics/"
readme = "./README.md"
homepage = "https://github.com/andrew-fuchs/tower-http-metrics#readme"
repository = "https://github.com/andrew-fuchs/tower-http-metrics"
license = "MIT"
keywords = []
categories = []
exclude = [
".gitattributes",
".github",
".gitignore",
]
[dependencies]
futures-util = "0.3"
http = "0.2"
http-body = "0.4"
metrics = "0.18"
pin-project = "1.0"
tower = { version = "0.4", optional = true }
tower-layer = "0.3"
tower-service = "0.3"
[dev-dependencies]
[features]
default = ["server", "util"]
server = []
util = ["tower"]