diff --git a/Cargo.lock b/Cargo.lock index efc16505..b2baee91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1671,6 +1671,7 @@ version = "0.0.13" dependencies = [ "chrono", "limbo_ext", + "mimalloc", "strum", "strum_macros", "thiserror 2.0.11", diff --git a/extensions/time/Cargo.toml b/extensions/time/Cargo.toml index 0f47bd9d..6220ddff 100644 --- a/extensions/time/Cargo.toml +++ b/extensions/time/Cargo.toml @@ -12,6 +12,9 @@ crate-type = ["cdylib", "lib"] [features] static = ["limbo_ext/static"] +[target.'cfg(not(target_family = "wasm"))'.dependencies] +mimalloc = { version = "*", default-features = false } + [dependencies] chrono = "0.4.39" limbo_ext = { path = "../core", features = ["static"] }