feat(mailer-bin): use mimalloc as the global allocator for mailer-bin

This commit is contained in:
2026-02-26 17:50:52 +00:00
parent fc88555790
commit 6ed3252485
6 changed files with 34 additions and 1 deletions

View File

@@ -22,3 +22,4 @@ dashmap.workspace = true
base64.workspace = true
uuid.workspace = true
rustls = { version = "0.23", default-features = false, features = ["ring", "std"] }
mimalloc = { workspace = true }

View File

@@ -5,6 +5,9 @@
//! 2. **Management mode** (`--management`) — JSON-over-stdin/stdout IPC for
//! integration with `@push.rocks/smartrust` from TypeScript
#[global_allocator]
static GLOBAL: mimalloc::MiMalloc = mimalloc::MiMalloc;
use clap::{Parser, Subcommand};
use dashmap::DashMap;
use serde::{Deserialize, Serialize};