[package] name = "axum-xml" version = "0.2.0" edition = "2021" authors = ["LightQuantum "] description = "XML extractor for axum" repository = "https://github.com/PhotonQuantum/axum-xml" readme = "README.md" license = "MIT" keywords = ["axum", "xml", "parser", "parsing", "extractor"] categories = ["parsing", "text-processing", "encoding", "web-programming", "web-programming::http-server"] exclude = [ ".github/*", ".mergify.yml", "rust-toolchain.toml", "bacon.toml" ] [features] encoding = ["quick-xml/encoding"] [dependencies] async-trait = "0.1" axum-core = "0.2" bytes = "1.1" http = "0.2" http-body = "0.4" mime = "0.3" quick-xml = { version = "0.22", features = ["serialize"] } serde = "1.0" thiserror = "1.0" [dev-dependencies] axum = "0.5" reqwest = "0.11" serde = { version = "1.0", features = ["derive"] } tokio = { version = "1.17", features = ["rt", "macros"] } tower = "0.4" tower-service = "0.3" uuid = { version = "0.8", features = ["serde"] }