1[package] 2name = "matchit" 3version = "0.7.3" 4license = "MIT AND BSD-3-Clause" 5authors = ["Ibraheem Ahmed <ibraheem@ibraheem.ca>"] 6edition = "2021" 7description = "A high performance, zero-copy URL router." 8categories = ["network-programming", "algorithms"] 9keywords = ["router", "path", "tree", "match", "url"] 10repository = "https://github.com/ibraheemdev/matchit" 11readme = "README.md" 12 13[dependencies] 14 15[dev-dependencies] 16# Benchmarks 17criterion = "0.3.4" 18actix-router = "0.2.7" 19regex = "1.5.4" 20route-recognizer = "0.3.0" 21gonzales = "0.0.3-beta" 22path-tree = "0.2.2" 23routefinder = "0.5.2" 24 25# examples 26tower = { version = "0.4", features = ["make", "util"] } 27tokio = { version = "1", features = ["full"] } 28hyper = { version = "0.14", features = ["full"] } 29 30[features] 31default = [] 32__test_helpers = [] 33 34[[bench]] 35name = "bench" 36harness = false 37 38[profile.release] 39lto = true 40opt-level = 3 41codegen-units = 1 42