-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Cargo.toml
52 lines (46 loc) · 1.26 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
[package]
name = "path-tree"
version = "0.8.2"
authors = ["Fangdun Tsai <[email protected]>"]
description = "path-tree is a lightweight high performance HTTP request router for Rust"
repository = "https://github.com/viz-rs/path-tree"
documentation = "https://docs.rs/path-tree"
keywords = ["radix", "tree", "path", "router"]
categories = ["asynchronous", "web-programming", "web-programming::http-server"]
license = "MIT OR Apache-2.0"
readme = "README.md"
edition = "2021"
include = [
"CHANGES.md",
"Cargo.toml",
"LICENSE-APACHE",
"LICENSE-MIT",
"README.md",
"src/*.rs"
]
[dependencies]
smallvec = { version = "1.13.2", features = ["const_new"] }
[dev-dependencies]
bytes = "1"
actix-router = "0.5"
ntex-router = "0.5"
path-table = "1.0"
route-recognizer = "0.3"
matchit = "0.7"
gonzales = "0.0.3-beta"
futures = "0.3"
rand = "0.8"
criterion = { version = "0.5", features = ["html_reports"] }
hyper = { version = "1", features = ["full"] }
hyper-util = { version = "0.1", features = ["tokio"] }
http-body-util = "0.1"
tokio = { version = "1", default-features = false, features = ["macros", "rt-multi-thread", "net"] }
[[bench]]
name = "bench"
harness = false
path = "benches/bench.rs"
[[example]]
name = "hello"
path = "examples/hello.rs"
[profile.bench]
lto = true