Files
turso/extensions/regexp/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

23 lines
457 B
TOML

[package]
name = "limbo_regexp"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[features]
static = ["limbo_ext/static"]
defaults = []
[lib]
crate-type = ["cdylib", "lib"]
[dependencies]
limbo_ext = { workspace = true, features = ["static"] }
regex = "1.11.1"
[target.'cfg(not(target_family = "wasm"))'.dependencies]
mimalloc = { version = "*", default-features = false }