[package]
edition = "2024"
rust-version = "1.95"
name = "sqlmodel-frankensqlite"
version = "0.4.3"
authors = ["SQLModel Rust Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "FrankenSQLite (pure-Rust) driver for SQLModel Rust"
readme = "README.md"
license = "LicenseRef-MIT-OpenAI-Anthropic-Rider"
repository = "https://github.com/Dicklesworthstone/sqlmodel_rust"
resolver = "2"
[lib]
name = "sqlmodel_frankensqlite"
path = "src/lib.rs"
[dependencies.asupersync]
version = "0.4.9"
default-features = false
[dependencies.fsqlite]
version = "0.3.14"
features = [
"native",
"async-api",
]
default-features = false
[dependencies.fsqlite-core]
version = "0.3.14"
features = ["native"]
default-features = false
[dependencies.fsqlite-error]
version = "0.3.14"
default-features = false
[dependencies.fsqlite-types]
version = "0.3.14"
features = ["native"]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sqlmodel-core]
version = "0.4.3"
[dev-dependencies.asupersync]
version = "0.4.9"
features = ["test-internals"]
default-features = false
[lints.clippy]
assert_is_empty = "allow"
bool_to_int_with_if = "allow"
cast_possible_wrap = "allow"
cast_precision_loss = "allow"
cast_sign_loss = "allow"
doc_markdown = "allow"
elidable_lifetime_names = "allow"
format_push_string = "allow"
match_same_arms = "allow"
missing_const_for_fn = "allow"
missing_errors_doc = "allow"
missing_panics_doc = "allow"
module_name_repetitions = "allow"
must_use_candidate = "allow"
needless_continue = "allow"
redundant_closure_for_method_calls = "allow"
return_self_not_must_use = "allow"
should_implement_trait = "allow"
struct_excessive_bools = "allow"
too_many_lines = "allow"
uninlined_format_args = "allow"
unused_self = "allow"
[lints.clippy.all]
level = "warn"
priority = -1
[lints.clippy.pedantic]
level = "warn"
priority = -1
[lints.rust]
unsafe_code = "warn"