-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCargo.toml
More file actions
41 lines (32 loc) · 1.01 KB
/
Cargo.toml
File metadata and controls
41 lines (32 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
[package]
name = "rustapi-validate"
description = "Type-safe request validation for RustAPI. Wrapper around the `validator` crate with deep framework integration."
documentation = "https://docs.rs/rustapi-validate"
version.workspace = true
edition.workspace = true
authors.workspace = true
license.workspace = true
repository.workspace = true
homepage.workspace = true
[dependencies]
# Validation (internal - not exposed in public API)
# Serialization
serde = { workspace = true }
serde_json = { workspace = true }
# Error handling
thiserror = { workspace = true }
# HTTP types for response
http = { workspace = true }
# Async support for v2 validation
async-trait = { workspace = true }
# Regex for pattern validation
regex = "1.10"
# Internationalization
rust-i18n = "4.0"
# Re-export derive macro
rustapi-macros = { workspace = true }
[dev-dependencies]
tokio = { workspace = true, features = ["macros", "rt-multi-thread"] }
proptest = "1.4"
rust-i18n = "4.0"
rustapi-core = { workspace = true, default-features = false }