[package]
edition = "2021"
rust-version = "1.75"
name = "citadeldb-sql"
version = "0.2.1"
authors = ["Yuriy Peysakhov"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "SQL engine for Citadel encrypted database"
homepage = "https://citadeldb.dev"
readme = "README.md"
keywords = [
"database",
"embedded-database",
"encryption",
"sql",
"encrypted-database",
]
categories = [
"database-implementations",
"cryptography",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yp3y5akh0v/citadel"
[lib]
name = "citadel_sql"
path = "src/lib.rs"
[[test]]
name = "edge_cases"
path = "tests/edge_cases.rs"
[[test]]
name = "explain"
path = "tests/explain.rs"
[[test]]
name = "explain_torture"
path = "tests/explain_torture.rs"
[[test]]
name = "functions"
path = "tests/functions.rs"
[[test]]
name = "functions_torture"
path = "tests/functions_torture.rs"
[[test]]
name = "indexes"
path = "tests/indexes.rs"
[[test]]
name = "integration"
path = "tests/integration.rs"
[[test]]
name = "join_torture"
path = "tests/join_torture.rs"
[[test]]
name = "joins"
path = "tests/joins.rs"
[[test]]
name = "planner"
path = "tests/planner.rs"
[[test]]
name = "prepared"
path = "tests/prepared.rs"
[[test]]
name = "prepared_torture"
path = "tests/prepared_torture.rs"
[[test]]
name = "stress"
path = "tests/stress.rs"
[[test]]
name = "subqueries"
path = "tests/subqueries.rs"
[[test]]
name = "subquery_torture"
path = "tests/subquery_torture.rs"
[[test]]
name = "transactions"
path = "tests/transactions.rs"
[[test]]
name = "txn_torture"
path = "tests/txn_torture.rs"
[dependencies.citadel]
version = "0.2.1"
package = "citadeldb"
[dependencies.citadel-core]
version = "0.2.1"
package = "citadeldb-core"
[dependencies.citadel-txn]
version = "0.2.1"
package = "citadeldb-txn"
[dependencies.lru]
version = "0.12"
[dependencies.sqlparser]
version = "0.61"
[dependencies.thiserror]
version = "2.0"
[dev-dependencies.tempfile]
version = "3"