[package]
edition = "2021"
rust-version = "1.88"
name = "graphitesql"
version = "0.0.3"
build = false
exclude = [
"/reference",
"/.github",
]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A pure, safe, no_std Rust re-implementation of SQLite, compatible with the SQLite 3 file format."
readme = "README.md"
keywords = [
"sqlite",
"database",
"sql",
"no_std",
"wasm",
]
categories = [
"database-implementations",
"no-std",
"wasm",
]
license = "blessing"
repository = "https://github.com/KarpelesLab/graphitesql"
[features]
default = ["std"]
std = []
[lib]
name = "graphitesql"
path = "src/lib.rs"
[[bin]]
name = "graphitesql"
path = "src/bin/graphitesql.rs"
required-features = ["std"]
[[test]]
name = "alter"
path = "tests/alter.rs"
[[test]]
name = "cte"
path = "tests/cte.rs"
[[test]]
name = "differential"
path = "tests/differential.rs"
[[test]]
name = "dml"
path = "tests/dml.rs"
[[test]]
name = "indexes"
path = "tests/indexes.rs"
[[test]]
name = "joins"
path = "tests/joins.rs"
[[test]]
name = "query"
path = "tests/query.rs"
[[test]]
name = "read_fixtures"
path = "tests/read_fixtures.rs"
[[test]]
name = "realworld"
path = "tests/realworld.rs"
[[test]]
name = "subquery"
path = "tests/subquery.rs"
[[test]]
name = "views"
path = "tests/views.rs"
[[test]]
name = "wal"
path = "tests/wal.rs"
[[test]]
name = "write_compat"
path = "tests/write_compat.rs"
[dependencies]
[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"
[profile.release]
opt-level = 3
lto = true
panic = "abort"