[package]
edition = "2021"
rust-version = "1.82.0"
name = "rkt_codegen"
version = "0.6.0"
authors = ["Sergio Benitez <sb@sergio.bz>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Procedural macros for the rkt web framework."
homepage = "https://rkt.rs"
documentation = "https://docs.rs/rkt/latest/rkt/"
readme = "README.md"
keywords = [
"rkt",
"rocket",
"web",
"framework",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/rustfoo/rkt"
[lib]
name = "rkt_codegen"
path = "src/lib.rs"
proc-macro = true
[[test]]
name = "async-entry"
path = "tests/async-entry.rs"
[[test]]
name = "async-routes"
path = "tests/async-routes.rs"
[[test]]
name = "catcher"
path = "tests/catcher.rs"
[[test]]
name = "expansion"
path = "tests/expansion.rs"
[[test]]
name = "from_form"
path = "tests/from_form.rs"
[[test]]
name = "from_form_field"
path = "tests/from_form_field.rs"
[[test]]
name = "from_param"
path = "tests/from_param.rs"
[[test]]
name = "responder"
path = "tests/responder.rs"
[[test]]
name = "route"
path = "tests/route.rs"
[[test]]
name = "route-data"
path = "tests/route-data.rs"
[[test]]
name = "route-format"
path = "tests/route-format.rs"
[[test]]
name = "route-ranking"
path = "tests/route-ranking.rs"
[[test]]
name = "route-raw"
path = "tests/route-raw.rs"
[[test]]
name = "route-uniqueness"
path = "tests/route-uniqueness.rs"
[[test]]
name = "segment-ignore"
path = "tests/segment-ignore.rs"
[[test]]
name = "typed-uris"
path = "tests/typed-uris.rs"
[[test]]
name = "ui-fail"
path = "tests/ui-fail.rs"
[[test]]
name = "uri_display"
path = "tests/uri_display.rs"
[dependencies.devise]
version = "0.4"
[dependencies.glob]
version = "0.3"
[dependencies.indexmap]
version = "2"
[dependencies.proc-macro2]
version = "1.0.60"
[dependencies.quote]
version = "1.0"
[dependencies.rkt_http]
version = "0.6.0"
[dependencies.syn]
version = "2.0"
features = [
"full",
"visit",
"visit-mut",
"extra-traits",
]
[dependencies.unicode-xid]
version = "0.2"
[dependencies.version_check]
version = "0.9"
[dev-dependencies.pretty_assertions]
version = "1"
[dev-dependencies.time]
version = "0.3"
features = ["macros"]
[dev-dependencies.trybuild]
version = "1.0"
[dev-dependencies.version_check]
version = "0.9"
[lints.clippy]
manual_range_contains = "allow"
module_inception = "allow"
multiple_bound_locations = "allow"
needless_borrow = "allow"
result_large_err = "allow"
type_complexity = "allow"
[lints.rust]
async_fn_in_trait = "allow"
[lints.rust.unexpected_cfgs]
level = "warn"
priority = 0
check-cfg = ["cfg(nightly)"]