-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathCargo.toml
44 lines (38 loc) · 991 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
39
40
41
42
43
44
[package]
name = "matchit"
version = "0.8.6"
license = "MIT AND BSD-3-Clause"
authors = ["Ibraheem Ahmed <[email protected]>"]
edition = "2021"
description = "A high performance, zero-copy URL router."
categories = ["network-programming", "algorithms"]
keywords = ["router", "path", "tree", "match", "url"]
repository = "https://github.com/ibraheemdev/matchit"
readme = "README.md"
[dependencies]
[dev-dependencies]
# Benchmarks
criterion = "0.5"
actix-router = "0.5"
regex = "1"
route-recognizer = "0.3"
gonzales = "0.0.3-beta"
path-tree = "0.8"
routefinder = "0.5"
wayfind = "0.8"
# Examples
tower = { version = "0.5.2", features = ["make", "util"] }
tokio = { version = "1", features = ["full"] }
http-body-util = "0.1"
hyper = { version = "1", features = ["http1", "server"] }
hyper-util = { version = "0.1", features = ["tokio"] }
[features]
default = []
__test_helpers = []
[[bench]]
name = "bench"
harness = false
[profile.release]
lto = true
opt-level = 3
codegen-units = 1