#![allow(non_camel_case_types)] #![allow(non_snake_case)] #![allow(non_upper_case_globals)]
pub mod boolean_expr;
pub mod card;
pub mod cli;
pub mod edge;
pub mod edge_id;
pub mod edge_type;
pub mod evidence;
pub mod formal_base_type;
pub mod key;
pub mod label_property_spec;
pub mod node;
pub mod node_id;
#[cfg(target_family = "wasm")]
compile_error!("pgschema is not supported in WebAssembly environments");
#[rustfmt::skip]
#[allow(clippy::all)]
pub mod parser;
pub mod pg;
pub mod pgs;
pub mod pgs_error;
pub mod property_value_spec;
pub mod record;
pub mod record_type;
pub mod result_association;
pub mod type_map;
pub mod type_name;
pub mod validation_result;
pub mod value;
pub mod value_type;
pub enum PgSchemaFormat {
PgSchemaC,
}