Keats / validator

Simple validation for Rust structs
MIT License
1.97k stars 141 forks source link

Doesn't generate #266

Closed Sanjeevi567 closed 1 year ago

Sanjeevi567 commented 1 year ago

Validator derive macro doesn't generate the code

pintariching commented 1 year ago

What crate version are you using? Can you give am example of the code that doesn't compile?

tsmt09 commented 1 year ago

Did you miss feature derive? This fixed the issue for me

Cargo.toml: validator = { version = "0.16", features = ["derive"] }

Sanjeevi567 commented 1 year ago

👍...solved