sqlite-plugin 0.3.0

A Rust crate for building a custom SQLite virtual file system (VFS).
Documentation
[build-dependencies.bindgen]
default-features = false
version = "0.71"

[dev-dependencies.log]
features = ["std"]
version = "=0.4.27"

[dev-dependencies.parking_lot]
version = "=0.12.3"

[dev-dependencies.rusqlite]
features = ["blob", "trace", "bundled"]
version = "=0.36.0"

[[example]]
crate-type = ["cdylib"]
name = "memvfs"
path = "examples/memvfs.rs"
required-features = ["dynamic"]

[features]
default = ["static"]
dynamic = []
static = []

[lib]
name = "sqlite_plugin"
path = "src/lib.rs"

[lints.clippy]
disallowed_methods = "deny"
doc-markdown = "warn"
map-unwrap-or = "warn"
uninlined-format-args = "warn"

[package]
authors = ["orbitinghail <hello@orbitinghail.dev>"]
autobenches = false
autobins = false
autoexamples = false
autolib = false
autotests = false
build = "build.rs"
description = "A Rust crate for building a custom SQLite virtual file system (VFS)."
edition = "2024"
homepage = "https://github.com/orbitinghail/sqlite-plugin"
keywords = ["sqlite", "vfs", "extension"]
license = "MIT OR Apache-2.0"
name = "sqlite-plugin"
readme = "README.md"
repository = "https://github.com/orbitinghail/sqlite-plugin"
rust-version = "1.85"
version = "0.3.0"