mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 20:14:21 +01:00
23 lines
531 B
TOML
23 lines
531 B
TOML
[package]
|
|
name = "limbo_vector"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
|
|
[features]
|
|
static= [ "limbo_ext/static" ]
|
|
default = ["quickcheck/default"]
|
|
|
|
[dependencies]
|
|
limbo_ext = { path = "../core", features = ["static"] }
|
|
|
|
[dev-dependencies]
|
|
quickcheck = { version = "1.0", default-features = false }
|
|
quickcheck_macros = { version = "1.0", default-features = false }
|
|
rand = "0.8" # Required for quickcheck
|