Valibuk is a library and a set of macros implementing the correct-by-construction pattern.
Correct-by-construction is a pattern that leverages the type system to guard against bugs that can come from improperly validating inputs. It does so by having an "unvalidated" type and a "validated" type. The only way of obtaining an instance of the validated type is to run all the defined validations on the unvalidated type. Then the correctness is achieved by using the correct type.
Lines 3 to 25 in c78d757
See more examples in tests
and examples
.
- Move validator registrations into macro annotations
- Support fields without validating
- Add UI tests using trybuild
- Support structs with lifetime params
- Support structs with generics
- Support global validators (take the whole struct)
- Add validator combinators