prax-codegen 0.9.1

Procedural macros for code generation in the Prax ORM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Built-in plugins for Prax code generation.

mod debug;
mod graphql;
mod json_schema;
mod serde_plugin;
mod validator;

pub use debug::DebugPlugin;
pub use graphql::GraphQLPlugin;
pub use json_schema::JsonSchemaPlugin;
pub use serde_plugin::SerdePlugin;
pub use validator::ValidatorPlugin;