Files
turso/sqlite3/Cargo.toml
Pekka Enberg f5cc3a08f0 Initial pass on SQLite C ABI
This adds initial SQLite C ABI compatibility to Limbo to make sure we
drive the Rust API in the right way that allows us to implement SQLite
semantics.
2024-05-08 07:05:56 -03:00

20 lines
373 B
TOML

# Copyright 2024 the Limbo authors. All rights reserved. MIT license.
[package]
name = "limbo_sqlite3"
version = "0.0.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
[lib]
crate-type = ["cdylib", "staticlib"]
doc = false
[build-dependencies]
cbindgen = "0.24.0"
[dependencies]
limbo_core = { path = "../core" }