[package]
edition = "2024"
rust-version = "1.85"
name = "fastapi-router"
version = "0.1.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Trie-based router for fastapi_rust"
homepage = "https://github.com/Dicklesworthstone/fastapi_rust"
documentation = "https://docs.rs/fastapi-router"
readme = "README.md"
keywords = [
"router",
"radix",
"trie",
"fastapi",
"http",
]
categories = [
"web-programming::http-server",
"data-structures",
]
license = "MIT"
repository = "https://github.com/Dicklesworthstone/fastapi_rust"
resolver = "2"
[lib]
name = "fastapi_router"
path = "src/lib.rs"
[dependencies.fastapi-core]
version = "0.1.1"
[dependencies.serde_json]
version = "1"
[lints.clippy]
doc_link_with_quotes = "allow"
doc_markdown = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"