mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-26 04:24:21 +01:00
...we'll likely call this Turso eventually, but right now, let's keep the code consistent.
24 lines
467 B
TOML
24 lines
467 B
TOML
[package]
|
|
name = "limbo-go"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
name = "_limbo_go"
|
|
crate-type = ["cdylib"]
|
|
path = "rs_src/lib.rs"
|
|
|
|
[features]
|
|
default = ["io_uring"]
|
|
io_uring = ["limbo_core/io_uring"]
|
|
|
|
|
|
[dependencies]
|
|
limbo_core = { path = "../../core/" }
|
|
|
|
[target.'cfg(target_os = "linux")'.dependencies]
|
|
limbo_core = { path = "../../core/", features = ["io_uring"] }
|