[package] name = "json_validator" version = "0.1.12" edition = "2021" authors = ["Ian Vega "] description = "A library for JSON validation with custom error messages and validation rules." license = "MIT" repository = "https://github.com/Lann892/json_validator" homepage = "https://github.com/Lann892" documentation = "https://docs.rs/json_validator" [dependencies] regex = "1" json_validator_macro = { version = "0.1.2", path = "../json_validator_macro" } serde = { version = "1.0.203", features = ["derive"] } [lib] path = "src/lib.rs" crate-type = ["lib"]