Files
turso/bindings/go/Cargo.toml
Pekka Enberg ac54c35f92 Switch to workspace dependencies
...makes it easier to specify a version, which is needed for `cargo publish`.
2025-02-12 17:28:04 +02:00

24 lines
459 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 = { workspace = true }
[target.'cfg(target_os = "linux")'.dependencies]
limbo_core = { workspace = true, features = ["io_uring"] }