nuke allocator

This commit is contained in:
Toshit Chawda 2024-12-17 15:45:03 -08:00
parent e55a3f5a31
commit 19a6d789a1
No known key found for this signature in database
GPG key ID: 91480ED99E2B3D9D
3 changed files with 61 additions and 10 deletions

View file

@ -1,5 +1,8 @@
pub mod error;
#[global_allocator]
static ALLOCATOR: wee_alloc::WeeAlloc = wee_alloc::WeeAlloc::INIT;
use std::{sync::Arc, time::Duration};
use error::{Result, RewriterError};