[package] name = "axum-jwt-auth" version = "0.1.1" edition = "2021" authors = ["Cole MacKenzie"] description = "A simple JWT authentication middleware for Axum" license = "MIT" repository = "https://github.com/cmackenzie1/axum-jwt-auth" [dependencies] axum = { version = "0.6", features = ["headers", "macros"] } chrono = "0.4" hyper = { version = "0.14", features = ["full"] } jsonwebtoken = { version = "8" } reqwest = { version = "0.11", features = ["json"] } serde = { version = "1", features = ["derive"] } serde_json = "1" tokio = { version = "1", default-features = false, features = [ "rt-multi-thread", "macros", ] } tower = "0.4" [[example]] name = "local" path = "examples/local/local.rs"