mirror of
https://github.com/tursodatabase/libsql.git
synced 2025-05-22 11:18:13 +00:00
29 lines
606 B
TOML
29 lines
606 B
TOML
[package]
|
|
name = "libsql_rust_suite"
|
|
version = "0.2.0"
|
|
edition = "2021"
|
|
|
|
[workspace]
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dev-dependencies]
|
|
rusqlite = { version = "0.29.0", git = "https://github.com/psarna/rusqlite", rev = "d9a97c0f25", default-features = false, features = [
|
|
"buildtime_bindgen",
|
|
"libsql-experimental",
|
|
"libsql-wasm-experimental",
|
|
"column_decltype",
|
|
"load_extension"
|
|
] }
|
|
|
|
itertools = "0.10"
|
|
tempfile = "3.3"
|
|
wabt = "0.10.0"
|
|
hex = "0.4.3"
|
|
|
|
[features]
|
|
default = []
|
|
udf = []
|
|
wasm = []
|
|
full = ["udf", "wasm"]
|