Run fmt
This commit is contained in:
parent
5134624b06
commit
322179ea13
3 changed files with 3 additions and 3 deletions
|
@ -6,7 +6,7 @@ resolver = "3"
|
|||
authors = ["Tristan Druyen <ek36g2vcc@mozmail.com>"]
|
||||
categories = ["web-programming"]
|
||||
description = "Helper macro's for better readability of axum handlers"
|
||||
edition = "2024"
|
||||
edition = "2021"
|
||||
homepage = "https://git.vlt81.de/vault81/axum-controller"
|
||||
keywords = ["axum", "controller", "macro", "routing"]
|
||||
license = "AGPL-3.0-or-later"
|
||||
|
|
|
@ -2,9 +2,9 @@
|
|||
use proc_macro::TokenStream;
|
||||
use proc_macro2::Ident;
|
||||
use syn::{
|
||||
ItemImpl, MetaNameValue,
|
||||
parse::{Parse, ParseStream},
|
||||
punctuated::Punctuated,
|
||||
ItemImpl, MetaNameValue,
|
||||
};
|
||||
#[macro_use]
|
||||
extern crate quote;
|
||||
|
|
|
@ -15,5 +15,5 @@
|
|||
//! ```
|
||||
|
||||
pub use axum_controller_macros::controller;
|
||||
pub use axum_typed_routing::TypedRouter;
|
||||
pub use axum_typed_routing::route;
|
||||
pub use axum_typed_routing::TypedRouter;
|
||||
|
|
Reference in a new issue