-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
27 lines (24 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
27 lines (24 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
[package]
name = "axum-validated-extractors"
version = "0.2.0"
edition = "2024"
description = "A collection of validated extractors for Axum that automatically validate the extracted data using the validator crate"
license = "MIT"
repository = "https://github.com/truehazker/axum-validated-extractors"
documentation = "https://docs.rs/axum-validated-extractors"
readme = "README.md"
keywords = ["axum", "validation", "extractors", "web", "http"]
categories = ["web-programming::http-server", "web-programming::http-client"]
authors = ["Egor Orlov <40111175+truehazker@users.noreply.github.com>"]
rust-version = "1.87.0"
[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
[dependencies]
axum = { version = "0.8.4", features = ["macros"] }
serde = { version = "1.0.219", features = ["derive"] }
thiserror = "2.0.16"
validator = { version = "0.20.0", features = ["derive"] }
[dev-dependencies]
tokio = { version = "1.47.1", features = ["rt", "macros"] }
tower = { version = "0.5.2", features = ["util"] }