From db51f7f103bbbd6c91c8f47d75b3482ef8939691 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 17 Dec 2023 15:32:20 +0100 Subject: Adding upstream version 3.0.0. Signed-off-by: Daniel Baumann --- rust/src/lib.rs | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 rust/src/lib.rs (limited to 'rust/src/lib.rs') diff --git a/rust/src/lib.rs b/rust/src/lib.rs new file mode 100644 index 0000000..bd0f1f6 --- /dev/null +++ b/rust/src/lib.rs @@ -0,0 +1,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; -- cgit v1.2.3