[package] name = "axum-valid" version = "0.2.3" description = "Validation tools for axum using the validator library." authors = ["GengTeng "] license = "MIT" homepage = "https://github.com/gengteng/axum-valid" repository = "https://github.com/gengteng/axum-valid" keywords = [ "http", "web", "framework", "validator", ] categories = [ "asynchronous", "network-programming", "web-programming", ] edition = "2021" [dependencies] axum = { version = "0.6.18", default-features = false } validator = "0.16.0" [dev-dependencies] anyhow = "1.0.71" tokio = { version = "1.28.2", features = ["full"] } reqwest = { version = "0.11.18", features = ["json"] } [features] default = ["json", "form", "query"] json = ["axum/json"] form = ["axum/form"] query = ["axum/query"]