graphitesql 0.0.0

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.95"
name = "graphitesql"
version = "0.0.0"
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"

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

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

[dependencies]

[lints.rust]
missing_docs = "warn"
unsafe_code = "forbid"

[profile.release]
opt-level = 3
lto = true
panic = "abort"