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 = "2024"
name = "rustdb"
version = "6.0.2"
authors = ["George Barwood"]
build = false
include = ["/src"]
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQL database"
readme = "README.md"
categories = ["database-implementations"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/georgebarwood/RustDB/"

[features]
builtin = []
compact = []
default = [
    "builtin",
    "pack",
    "verify",
    "table",
    "max",
    "renumber",
    "gentrans",
]
gentrans = []
log = []
log-execute = []
max = [
    "builtin",
    "table",
]
pack = []
pstd = [
    "dep:pstd",
    "atom-file/pstd",
]
renumber = []
serde = [
    "dep:serde",
    "pstd/serde",
]
table = []
unsafe-optim = [
    "pstd/unsafe-optim",
    "atom-file/unsafe-optim",
]
verify = []

[lib]
name = "rustdb"
path = "src/lib.rs"

[dependencies.atom-file]
version = "0.1.0"

[dependencies.pstd]
version = "0.1.0"
optional = true

[dependencies.rustc-hash]
version = "1.1.0"

[dependencies.serde]
version = "1.0.131"
features = [
    "derive",
    "rc",
]
optional = true

[dev-dependencies.rand]
version = "0.8.4"

[dev-dependencies.sqlite]
version = "0.32.0"