prax-import 0.10.0

Import schemas from Prisma, Diesel, and SeaORM to Prax ORM
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Diesel schema import functionality.
//!
//! This module provides utilities to parse Diesel schema files and convert
//! them to Prax schema format.

mod parser;
pub mod types;

pub use parser::{
    import_diesel_schema, import_diesel_schema_file, parse_diesel_file, parse_diesel_schema,
};
pub use types::*;