mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 01:58:16 +00:00
Move limbo_extension crate to extensions/core
This commit is contained in:
parent
465c923db1
commit
f83b34287e
5 changed files with 8 additions and 5 deletions
|
@ -8,10 +8,13 @@ members = [
|
|||
"bindings/rust",
|
||||
"bindings/wasm",
|
||||
"cli",
|
||||
"sqlite3",
|
||||
"core",
|
||||
"extensions/core",
|
||||
"extensions/uuid",
|
||||
"macros",
|
||||
"simulator",
|
||||
"test", "macros", "limbo_extension", "extensions/uuid",
|
||||
"sqlite3",
|
||||
"test",
|
||||
]
|
||||
exclude = ["perf/latency/limbo"]
|
||||
|
||||
|
|
|
@ -35,7 +35,7 @@ rustix = "0.38.34"
|
|||
mimalloc = { version = "*", default-features = false }
|
||||
|
||||
[dependencies]
|
||||
limbo_extension = { path = "../limbo_extension" }
|
||||
limbo_extension = { path = "../extensions/core" }
|
||||
cfg_block = "0.1.1"
|
||||
fallible-iterator = "0.3.0"
|
||||
hex = "0.4.3"
|
||||
|
|
|
@ -8,4 +8,4 @@ repository.workspace = true
|
|||
|
||||
[dependencies]
|
||||
log = "0.4.20"
|
||||
limbo_macros = { path = "../macros" }
|
||||
limbo_macros = { path = "../../macros" }
|
|
@ -11,6 +11,6 @@ crate-type = ["cdylib", "lib"]
|
|||
|
||||
|
||||
[dependencies]
|
||||
limbo_extension = { path = "../../limbo_extension"}
|
||||
limbo_extension = { path = "../core"}
|
||||
uuid = { version = "1.11.0", features = ["v4", "v7"] }
|
||||
log = "0.4.20"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue