graphitesql 0.0.4

A pure, safe, no_std Rust re-implementation of SQLite, compatible with the SQLite 3 file format.
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 = "2021"
rust-version = "1.88"
name = "graphitesql"
version = "0.0.4"
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 = "datetime"
path = "tests/datetime.rs"

[[test]]
name = "differential"
path = "tests/differential.rs"

[[test]]
name = "dml"
path = "tests/dml.rs"

[[test]]
name = "explain"
path = "tests/explain.rs"

[[test]]
name = "foreign_keys"
path = "tests/foreign_keys.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 = "triggers"
path = "tests/triggers.rs"

[[test]]
name = "vacuum"
path = "tests/vacuum.rs"

[[test]]
name = "views"
path = "tests/views.rs"

[[test]]
name = "wal"
path = "tests/wal.rs"

[[test]]
name = "wal_write"
path = "tests/wal_write.rs"

[[test]]
name = "window"
path = "tests/window.rs"

[[test]]
name = "without_rowid"
path = "tests/without_rowid.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"