Files
turso/sqlite3/Cargo.toml
Pekka Enberg 41e9d7f9b8 sqlite3/tests: Run Rust-based test suite also with SQLite
You can now run the tests with SQLite with:

```
cargo test --test compat --features sqlite3
```
2025-05-15 09:15:35 +03:00

38 lines
667 B
TOML

# Copyright 2024 the Limbo authors. All rights reserved. MIT license.
[package]
name = "limbo_sqlite3"
version.workspace = true
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
build = "build.rs"
[features]
capi = []
lfs = []
sqlite3 = []
[package.metadata.dist]
dist = true
[lib]
doc = false
crate-type = ["lib", "cdylib", "staticlib"]
[dependencies]
env_logger = { version = "0.11.3", default-features = false }
libc = "0.2.169"
limbo_core = { path = "../core" }
log = "0.4.22"
[package.metadata.capi.header]
name = "sqlite3.h"
[[test]]
name = "compat"
path = "tests/compat/mod.rs"
[build-dependencies]