sqlite-mumu 0.2.0-rc.4

sqlite-mumu is a plugin for the mumu ecosystem
Documentation
[package]
name        = "sqlite-mumu"
version     = "0.2.0-rc.4"
edition     = "2021"
description = "sqlite-mumu is a plugin for the mumu ecosystem"
license     = "MIT OR Apache-2.0"
readme      = "README.md"
homepage    = "https://lava.nu11.uk"
repository  = "https://gitlab.com/tofo/sqlite-mumu"
keywords    = ["mumu", "sqlite", "database"]
categories  = ["data-structures", "parser-implementations", "concurrency"]
authors     = ["Tom Fotheringham <tom@nu11.co.uk>"]

[lib]
name       = "mumusqlite"
crate-type = ["cdylib", "lib"]

[features]
# Host-only plugin by design (rusqlite is native). Keep default lean.
default = []
# Host toggles optional libloading (parity with other plugins).
host = ["dep:libloading"]
# Marker only; this crate is not intended to compile for wasm.
web = []

[dependencies]
# Pin EXACTLY to the host engine version + enable host layout
mumu        = { package = "core-mumu", version = "0.9.0-rc.4", default-features = false, features = ["host"] }

# Use bundled SQLite so we never need a system libsqlite3 present
rusqlite    = { version = "0.31", features = ["bundled"] }

indexmap    = "2.2"
lazy_static = "1.4"
# Optional dynamic loading parity with other plugins
libloading  = { version = "0.7", optional = true }