# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO # # When uploading crates to the registry Cargo will automatically # "normalize" Cargo.toml files for maximal compatibility # with all versions of Cargo and also rewrite `path` dependencies # to registry (e.g., crates.io) dependencies. # # If you are reading this file be aware that the original Cargo.toml # will likely look very different (and much more reasonable). # See Cargo.toml.orig for the original contents. [package] edition = "2021" name = "axum-serde" version = "0.7.0" authors = ["GengTeng "] build = false autobins = false autoexamples = false autotests = false autobenches = false description = "Provides multiple serde-based extractors / responses for the Axum web framework, also offers a macro to easily customize extractors / responses." homepage = "https://github.com/gengteng/axum-serde" documentation = "https://docs.rs/axum-serde" readme = "README.md" keywords = [ "axum", "serde", "extractor", "response", ] categories = [ "asynchronous", "network-programming", "web-programming", ] license = "MIT" repository = "https://github.com/gengteng/axum-serde" [package.metadata.docs.rs] features = ["full"] [lib] name = "axum_serde" path = "src/lib.rs" [dependencies.async-trait] version = "0.1.79" [dependencies.axum-core] version = "0.4.3" [dependencies.bytes] version = "1.6.0" [dependencies.ciborium] version = "0.2.2" optional = true [dependencies.http] version = "1.1.0" [dependencies.mime] version = "0.3.17" [dependencies.quick-xml] version = "0.37.0" features = ["serialize"] optional = true [dependencies.rmp-serde] version = "1.3.0" optional = true [dependencies.serde] version = "1.0.197" [dependencies.serde_yaml] version = "0.9.33" optional = true [dependencies.sonic-rs] version = "0.3.7" optional = true [dependencies.thiserror] version = "1.0.58" [dependencies.toml_] version = "0.8.14" optional = true package = "toml" [dev-dependencies.axum] version = "0.7.5" default-features = false [dev-dependencies.axum-test] version = "16.3.0" [dev-dependencies.serde] version = "1.0.197" features = ["derive"] [dev-dependencies.tokio] version = "1.37.0" features = ["macros"] [features] cbor = ["dep:ciborium"] full = [ "yaml", "msgpack", "toml", "xml", "sonic", "cbor", ] msgpack = ["dep:rmp-serde"] sonic = ["dep:sonic-rs"] toml = ["dep:toml_"] xml = ["dep:quick-xml"] xml_encoding = [ "xml", "quick-xml/encoding", ] yaml = ["dep:serde_yaml"]