[package]
edition = "2024"
name = "sim-platform-sqlite"
version = "0.1.0"
build = false
publish = true
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Attesting SQLite relation capsule for SIM."
homepage = "https://github.com/sim-nest/sim-platform"
readme = "README.md"
license = "MPL-2.0"
repository = "https://github.com/sim-nest/sim-platform"
[package.metadata.sim-recipes]
policy = "rustdoc"
reason = "Real-file adoption, migration, attach, and bounded execution are checked by conformance tests."
[lib]
name = "sim_platform_sqlite"
path = "src/lib.rs"
[dependencies.rusqlite]
version = "0.31"
features = [
"bundled",
"hooks",
]
[dependencies.sim-codec-sql]
version = "0.1.0"
[dependencies.sim-kernel]
version = "0.3.0"
[dependencies.sim-relation-core]
version = "0.1.0"
[dependencies.sim-relation-migrate]
version = "0.1.0"
[dependencies.sim-relation-plan]
version = "0.1.0"
[dependencies.sim-relation-schema]
version = "0.1.0"
[dependencies.sim-relation-site]
version = "0.1.0"
[lints.clippy]
pedantic = "warn"
[lints.rust]
unsafe_code = "forbid"