[package]
edition = "2024"
rust-version = "1.85"
name = "fsqlite-c-api"
version = "0.1.7"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQLite C API compatibility shim for drop-in replacement"
readme = "README.md"
license = "LicenseRef-MIT-OpenAI-Anthropic-Rider"
repository = "https://github.com/Dicklesworthstone/frankensqlite"
resolver = "2"
[lib]
name = "fsqlite_c_api"
crate-type = [
"cdylib",
"staticlib",
"rlib",
]
path = "src/lib.rs"
[dependencies.fsqlite]
version = "0.1.7"
[dependencies.fsqlite-ast]
version = "0.1.7"
[dependencies.fsqlite-error]
version = "0.1.7"
[dependencies.fsqlite-parser]
version = "0.1.7"
[dependencies.fsqlite-types]
version = "0.1.7"
default-features = false
[dependencies.tracing]
version = "0.1"
[dev-dependencies.tempfile]
version = "3.17"
[lints.clippy.cast_precision_loss]
level = "allow"
priority = 1
[lints.clippy.doc_markdown]
level = "allow"
priority = 1
[lints.clippy.missing_const_for_fn]
level = "allow"
priority = 1
[lints.clippy.missing_errors_doc]
level = "allow"
priority = 1
[lints.clippy.missing_panics_doc]
level = "allow"
priority = 1
[lints.clippy.module_name_repetitions]
level = "allow"
priority = 1
[lints.clippy.must_use_candidate]
level = "allow"
priority = 1
[lints.clippy.nursery]
level = "deny"
priority = -1
[lints.clippy.option_if_let_else]
level = "allow"
priority = 1
[lints.clippy.pedantic]
level = "deny"
priority = -1
[lints.clippy.uninlined_format_args]
level = "allow"
priority = 1
[lints.rust]
unsafe_code = "allow"