chore: remove custom global allocator

This commit is contained in:
rustmailer
2026-05-26 15:20:59 +08:00
parent c0a63a1e3c
commit 4bd714a670
7 changed files with 4 additions and 36 deletions
-1
View File
@@ -33,7 +33,6 @@ tracing.workspace = true
tokio.workspace = true
http.workspace = true
urlencoding.workspace = true
mimalloc.workspace = true
[dev-dependencies]
poem = { version = "3.1.12", features = ["test"] }
-5
View File
@@ -16,12 +16,7 @@
// You should have received a copy of the GNU Affero General Public License
// along with this program. If not, see <http://www.gnu.org/licenses/>.
use bichon_core::error::BichonResult;
use mimalloc::MiMalloc;
#[global_allocator]
static GLOBAL: MiMalloc = MiMalloc;
#[tokio::main]
async fn main() -> BichonResult<()> {