[package]
edition = "2024"
name = "sql-rs"
version = "0.1.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "A SQL database with vector similarity search capabilities"
readme = "README.md"
keywords = [
"sql",
"database",
"vector",
"similarity-search",
]
categories = [
"database",
"data-structures",
]
license = "Apache-2.0"
repository = "https://github.com/yingkitw/sql-rs"
[lib]
name = "sql_rs"
path = "src/lib.rs"
[[bin]]
name = "sql-rs"
path = "src/main.rs"
[[example]]
name = "basic_usage"
path = "examples/basic_usage.rs"
[[example]]
name = "comprehensive_demo"
path = "examples/comprehensive_demo.rs"
[[test]]
name = "aggregate_tests"
path = "tests/aggregate_tests.rs"
[[test]]
name = "and_or_tests"
path = "tests/and_or_tests.rs"
[[test]]
name = "btree_edge_cases_tests"
path = "tests/btree_edge_cases_tests.rs"
[[test]]
name = "concurrency_stress_tests"
path = "tests/concurrency_stress_tests.rs"
[[test]]
name = "debug_btree"
path = "tests/debug_btree.rs"
[[test]]
name = "delete_drop_tests"
path = "tests/delete_drop_tests.rs"
[[test]]
name = "error_comprehensive_tests"
path = "tests/error_comprehensive_tests.rs"
[[test]]
name = "error_handling_tests"
path = "tests/error_handling_tests.rs"
[[test]]
name = "group_by_tests"
path = "tests/group_by_tests.rs"
[[test]]
name = "index_tests"
path = "tests/index_tests.rs"
[[test]]
name = "integration_tests"
path = "tests/integration_tests.rs"
[[test]]
name = "join_tests"
path = "tests/join_tests.rs"
[[test]]
name = "order_limit_tests"
path = "tests/order_limit_tests.rs"
[[test]]
name = "parser_edge_cases_tests"
path = "tests/parser_edge_cases_tests.rs"
[[test]]
name = "persistence_recovery_tests"
path = "tests/persistence_recovery_tests.rs"
[[test]]
name = "query_advanced_tests"
path = "tests/query_advanced_tests.rs"
[[test]]
name = "query_tests"
path = "tests/query_tests.rs"
[[test]]
name = "storage_advanced_tests"
path = "tests/storage_advanced_tests.rs"
[[test]]
name = "storage_tests"
path = "tests/storage_tests.rs"
[[test]]
name = "transaction_comprehensive_tests"
path = "tests/transaction_comprehensive_tests.rs"
[[test]]
name = "vector_tests"
path = "tests/vector_tests.rs"
[[test]]
name = "wal_recovery_tests"
path = "tests/wal_recovery_tests.rs"
[dependencies.anyhow]
version = "1.0"
[dependencies.bincode]
version = "1.3"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.memmap2]
version = "0.9"
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.thiserror]
version = "1.0"
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.tempfile]
version = "3.10"