[package]
edition = "2021"
name = "rustapi-validate"
version = "0.1.201"
authors = ["RustAPI Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Type-safe request validation for RustAPI. Wrapper around the `validator` crate with deep framework integration."
homepage = "https://github.com/Tuntii/RustAPI"
documentation = "https://docs.rs/rustapi-validate"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/Tuntii/RustAPI"
[lib]
name = "rustapi_validate"
path = "src/lib.rs"
[[test]]
name = "custom_async"
path = "tests/custom_async.rs"
[[test]]
name = "custom_messages"
path = "tests/custom_messages.rs"
[[test]]
name = "derive_macro_tests"
path = "tests/derive_macro_tests.rs"
[[test]]
name = "groups"
path = "tests/groups.rs"
[[test]]
name = "i18n"
path = "tests/i18n.rs"
[[test]]
name = "rich_rules"
path = "tests/rich_rules.rs"
[dependencies.async-trait]
version = "0.1"
[dependencies.http]
version = "1.0"
[dependencies.regex]
version = "1.10"
[dependencies.rust-i18n]
version = "3.0"
[dependencies.rustapi-macros]
version = "0.1.188"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.proptest]
version = "1.4"
[dev-dependencies.rust-i18n]
version = "3.0"
[dev-dependencies.rustapi-core]
version = "0.1.188"
default-features = false
[dev-dependencies.tokio]
version = "1.35"
features = [
"full",
"macros",
"rt-multi-thread",
]