sqlite-plugin 0.7.0

A Rust crate for building a custom SQLite virtual file system (VFS).
Documentation
# THIS FILE IS AUTOMATICALLY GENERATED BY CARGO
#
# When uploading crates to the registry Cargo will automatically
# "normalize" Cargo.toml files for maximal compatibility
# with all versions of Cargo and also rewrite `path` dependencies
# to registry (e.g., crates.io) dependencies.
#
# If you are reading this file be aware that the original Cargo.toml
# will likely look very different (and much more reasonable).
# See Cargo.toml.orig for the original contents.

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

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

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

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

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

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

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

[build-dependencies.bindgen]
version = "0.72"
default-features = false

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