-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
31 lines (27 loc) · 795 Bytes
/
Cargo.toml
File metadata and controls
31 lines (27 loc) · 795 Bytes
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
[package]
name = "tide-server-timing"
version = "0.16.0"
license = "MIT OR Apache-2.0"
repository = "https://github.com/yoshuawuyts/tide-server-timing"
documentation = "https://docs.rs/tide-server-timing"
description = "Server-Timing support for Tide + Tracing"
readme = "README.md"
edition = "2018"
keywords = []
categories = []
authors = [
"Yoshua Wuyts <yoshuawuyts@gmail.com>"
]
[features]
[dependencies]
tide = { version = "0.16.0", default-features = false, features = ["async-h1"] }
tracing-subscriber = "0.2.15"
tracing-core = "0.1.17"
tracing = "0.1.21"
tracing-futures = "0.2.4"
async-channel = "1.5.1"
# TODO: remove me
http-types = { version = "2.8.0", features = ["unstable"] }
[dev-dependencies]
async-std = { version = "1.7.0", features = ["attributes"] }
tide = "0.15.0"