mirror of
https://github.com/aljazceru/turso.git
synced 2025-12-25 12:04:21 +01:00
25 lines
514 B
TOML
25 lines
514 B
TOML
[package]
|
|
name = "limbo_csv"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
description = "Limbo CSV extension"
|
|
|
|
[lib]
|
|
crate-type = ["cdylib", "lib"]
|
|
|
|
[features]
|
|
static = ["limbo_ext/static"]
|
|
|
|
[dependencies]
|
|
limbo_ext = { workspace = true, features = ["static"] }
|
|
csv = "1.3.1"
|
|
|
|
[dev-dependencies]
|
|
tempfile = "3.19.1"
|
|
|
|
[target.'cfg(not(target_family = "wasm"))'.dependencies]
|
|
mimalloc = { version = "0.1", default-features = false }
|