-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
61 lines (53 loc) · 1.18 KB
/
Copy pathCargo.toml
File metadata and controls
61 lines (53 loc) · 1.18 KB
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
53
54
55
56
57
58
59
60
61
[package]
name = "rou3"
version = "0.1.0"
edition = "2024"
rust-version = "1.85"
authors = ["MuntasirSZN <muntasir.joypurhat@gmail.com>"]
description = "🌳 Lightweight and fast rou(ter) for Rust"
license = "MIT"
readme = "README.md"
repository = "https://github.com/MuntasirSZN/rou3-rs"
keywords = ["url", "router"]
[dependencies]
ahash = "0.8.12"
indexmap = "2.12.0"
parking_lot = "0.12.5"
thiserror = "2.0.17"
[dev-dependencies]
# Test runner
cargo-nextest = "0.9.110"
# Wall clock time based benchmarking
criterion = "0.7.0"
# More sophisticated benchmarking
iai-callgrind = "0.16.1"
# Tracing in tests etc.
tracing = "0.1.41"
tracing-subscriber = { version = "0.3.20", features = ["env-filter", "fmt"] }
# Router comparisons
actix-router = "0.5.3"
gonzales = "0.0.3-beta"
matchit = "0.9.0"
path-tree = "0.8.3"
regex = "1.12.2"
route-recognizer = "0.3.1"
routefinder = "0.5.4"
wayfind = "0.9.0"
[[bench]]
name = "benchmarks"
harness = false
[[bench]]
name = "iai_benchmarks"
harness = false
[[bench]]
name = "router_comparison"
harness = false
[profile.release]
lto = "fat"
codegen-units = 1
panic = "abort"
strip = "debuginfo"
[profile.bench]
inherits = "release"
debug = true
strip = false