1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
#![allow(non_snake_case)]
#![allow(non_camel_case_types)]

// dependencies
extern crate libc;

// rust modules
pub mod rust_utils;
pub mod setjmp;

// PG modules
pub mod executor;
pub mod fmgr;
pub mod pg_config;
pub mod postmaster;
pub mod postgres;
pub mod utils;

#[global_allocator]
static ALLOCATOR: rust_utils::PostgresAllocator = rust_utils::PostgresAllocator;