add dynamic linking in extensions/time/Cargo.toml

This commit is contained in:
pedrocarlo
2025-02-01 20:14:23 -03:00
parent 26f24f93ad
commit a4251e0448
2 changed files with 4 additions and 0 deletions

1
Cargo.lock generated
View File

@@ -1671,6 +1671,7 @@ version = "0.0.13"
dependencies = [
"chrono",
"limbo_ext",
"mimalloc",
"strum",
"strum_macros",
"thiserror 2.0.11",

View File

@@ -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"] }