bindings: select io_uring feature from limbo_core explicitly as it will be made non-default

This commit is contained in:
Jorge López 2025-02-09 01:10:35 +01:00
parent a1a9218131
commit be5ea350bb
No known key found for this signature in database
GPG key ID: F8D6CEBC4788D6A1
4 changed files with 5 additions and 5 deletions

View file

@ -17,7 +17,7 @@ io_uring = ["limbo_core/io_uring"]
[dependencies]
limbo_core = { path = "../../core/" }
limbo_core = { path = "../../core" }
[target.'cfg(target_os = "linux")'.dependencies]
limbo_core = { path = "../../core/", features = ["io_uring"] }
limbo_core = { path = "../../core", features = ["io_uring"] }

View file

@ -12,6 +12,6 @@ crate-type = ["cdylib"]
path = "rs_src/lib.rs"
[dependencies]
limbo_core = { path = "../../core" }
limbo_core = { path = "../../core", features = ["io_uring"] }
jni = "0.21.1"
thiserror = "2.0.9"

View file

@ -16,7 +16,7 @@ extension-module = ["pyo3/extension-module"]
[dependencies]
anyhow = "1.0"
limbo_core = { path = "../../core" }
limbo_core = { path = "../../core", features = ["io_uring"] }
pyo3 = { version = "0.22.4", features = ["anyhow"] }
[build-dependencies]

View file

@ -9,7 +9,7 @@ license.workspace = true
repository.workspace = true
[dependencies]
limbo_core = { path = "../../core" }
limbo_core = { path = "../../core", features = ["io_uring"] }
thiserror = "2.0.9"
[dev-dependencies]