summaryrefslogtreecommitdiffstats
path: root/rust/src/lib.rs
blob: bd0f1f6fe1590633bce36577bd3056bdaad88067 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
extern crate core;

#[cfg(feature = "mimalloc")]
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;

mod constants;
mod helpers;
mod parsing;
mod python;

pub use python::_pendulum;