quill-sql 0.3.1

An educational Rust relational database (RDBMS) inspired by CMU 15445
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"
name = "quill-sql"
version = "0.3.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An educational Rust relational database (RDBMS) inspired by CMU 15445"
readme = "README.md"
license = "MIT"
repository = "https://github.com/feichai0017/quillsql"

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

[[bin]]
name = "client"
path = "src/bin/client.rs"

[[bin]]
name = "server"
path = "src/bin/server.rs"

[[bench]]
name = "storage_bench"
path = "benches/storage_bench.rs"
harness = false

[dependencies.axum]
version = "0.7"
features = [
    "macros",
    "json",
]

[dependencies.clap]
version = "4.3.19"
features = [
    "derive",
    "cargo",
]

[dependencies.comfy-table]
version = "7.1.0"

[dependencies.dashmap]
version = "6.1.0"

[dependencies.derive-new]
version = "0.7.0"

[dependencies.derive-with]
version = "0.6.0"

[dependencies.env_logger]
version = "0.11.5"

[dependencies.holt]
version = "0.4.1"

[dependencies.log]
version = "0.4.21"

[dependencies.parking_lot]
version = "0.12.1"
features = ["deadlock_detection"]

[dependencies.rustyline]
version = "15.0.0"

[dependencies.serde]
version = "1.0"
features = ["derive"]

[dependencies.sqlparser]
version = "0.34.0"

[dependencies.strum]
version = "0.26"
features = ["derive"]

[dependencies.tempfile]
version = "3.12.0"

[dependencies.thiserror]
version = "2.0.12"

[dependencies.tokio]
version = "1.41.1"
features = ["full"]

[dependencies.tower-http]
version = "0.5"
features = [
    "fs",
    "trace",
    "cors",
]

[dev-dependencies.criterion]
version = "0.5"
features = ["html_reports"]

[dev-dependencies.postgres]
version = "0.19"

[dev-dependencies.pprof]
version = "0.15.0"
features = [
    "criterion",
    "flamegraph",
]

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

[dev-dependencies.rand_chacha]
version = "0.9"

[dev-dependencies.regex]
version = "1.9.1"

[dev-dependencies.rusqlite]
version = "0.31"
features = ["bundled"]

[dev-dependencies.sqllogictest]
version = "0.13.0"