prost-validate

Crates.ioprost-validate
lib.rsprost-validate
version0.2.6
sourcesrc
created_at2024-10-09 16:52:38.18975
updated_at2024-10-16 08:42:47.766612
descriptionprotoc-gen-validate's validation for prost
homepage
repositoryhttps://github.com/linka-cloud/prost-validate
max_upload_size
id1402605
size35,932
(Adphi)

documentation

https://docs.rs/prost-validate

README

crates.io docs.rs deps.rs MSRV Continuous integration Apache 2.0

prost-validate

A protobuf library extending prost with validation support.

This is a rust implementation of protoc-gen-validate.

It uses the prost crate to generate the derive based validation code.

For a reflection based implementation see the prost-reflect-validate crate.

Usage

It must be used with prost generated code.

All validation rules are documented in the proto file or in the protoc-gen-validate documentation.

cargo add prost-validate --features derive
cargo add prost-validate-build --build

Proto definition

proto/message.proto:

syntax = "proto3";

package validate.example;

import "validate/validate.proto";

message ExampleMessage {
  string content = 1 [(validate.rules).string = {const: "Hello, world!"}];
}

Build script

build.rs:

fn main() -> Result<(), Box<dyn std::error::Error>> {
    prost_validate_build::Builder::new()
        .compile_protos(&["message.proto"], &["proto", "../prost-validate-types/proto"])?:
    Ok(())
}

Validation

Include the generated code

include!(concat!(env!("OUT_DIR"), "/validate.example.rs"));

Using the generated code

fn main() {
    use example_proto::ExampleMessage;
    use prost_validate::Validator;

    match ExampleMessage::default().validate() {
        Ok(_) => println!("Validation passed"),
        Err(e) => eprintln!("Validation failed: {}", e),
    }
    let msg = ExampleMessage {
        content: "Hello, world!".to_string(),
    };
    match msg.validate() {
        Ok(_) => println!("Validation passed"),
        Err(e) => eprintln!("Validation failed: {}", e),
    }
}

Output:

Validation failed: "validate.example.ExampleMessage.content": must be equal to "Hello, world!"

Validation passed

Commit count: 41

cargo fmt