[package]
edition = "2021"
name = "featherdb"
version = "1.0.0"
authors = ["FeatherDB Contributors"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "An embedded SQL database for AI agents — MVCC, encryption, sessions"
readme = "README.md"
keywords = [
"database",
"embedded",
"sql",
"mvcc",
"encryption",
]
categories = ["database-implementations"]
license = "MIT OR Apache-2.0"
repository = "https://github.com/yeshks/featherdb"
[lib]
name = "featherdb"
path = "src/lib.rs"
[[example]]
name = "check_constraints_demo"
path = "examples/check_constraints_demo.rs"
[[example]]
name = "demo_new_functions"
path = "examples/demo_new_functions.rs"
[[example]]
name = "metrics_demo"
path = "examples/metrics_demo.rs"
[[example]]
name = "quickstart"
path = "examples/quickstart.rs"
[[example]]
name = "storage_quota_demo"
path = "examples/storage_quota_demo.rs"
[[example]]
name = "timeout_demo"
path = "examples/timeout_demo.rs"
[[test]]
name = "alter_table_test"
path = "tests/alter_table_test.rs"
[[test]]
name = "auth_test"
path = "tests/auth_test.rs"
[[test]]
name = "chaos_test"
path = "tests/chaos_test.rs"
[[test]]
name = "check_constraint_test"
path = "tests/check_constraint_test.rs"
[[test]]
name = "concurrency_test"
path = "tests/concurrency_test.rs"
[[test]]
name = "crash_recovery_test"
path = "tests/crash_recovery_test.rs"
[[test]]
name = "cross_join_test"
path = "tests/cross_join_test.rs"
[[test]]
name = "cte_test"
path = "tests/cte_test.rs"
[[test]]
name = "deadlock_test"
path = "tests/deadlock_test.rs"
[[test]]
name = "derive_test"
path = "tests/derive_test.rs"
[[test]]
name = "edge_case_test"
path = "tests/edge_case_test.rs"
[[test]]
name = "error_path_test"
path = "tests/error_path_test.rs"
[[test]]
name = "executor_coverage_test"
path = "tests/executor_coverage_test.rs"
[[test]]
name = "foreign_key_test"
path = "tests/foreign_key_test.rs"
[[test]]
name = "function_test"
path = "tests/function_test.rs"
[[test]]
name = "gc_test"
path = "tests/gc_test.rs"
[[test]]
name = "having_test"
path = "tests/having_test.rs"
[[test]]
name = "metrics_test"
path = "tests/metrics_test.rs"
[[test]]
name = "mvcc_persistence_test"
path = "tests/mvcc_persistence_test.rs"
[[test]]
name = "permissions_test"
path = "tests/permissions_test.rs"
[[test]]
name = "pk_range_scan_test"
path = "tests/pk_range_scan_test.rs"
[[test]]
name = "prepared_statement_test"
path = "tests/prepared_statement_test.rs"
[[test]]
name = "query_builder_test"
path = "tests/query_builder_test.rs"
[[test]]
name = "session_bugs_additional_test"
path = "tests/session_bugs_additional_test.rs"
[[test]]
name = "session_bugs_test"
path = "tests/session_bugs_test.rs"
[[test]]
name = "session_test"
path = "tests/session_test.rs"
[[test]]
name = "set_ops_test"
path = "tests/set_ops_test.rs"
[[test]]
name = "storage_limits_test"
path = "tests/storage_limits_test.rs"
[[test]]
name = "storage_quota_test"
path = "tests/storage_quota_test.rs"
[[test]]
name = "subquery_test"
path = "tests/subquery_test.rs"
[[test]]
name = "timeout_test"
path = "tests/timeout_test.rs"
[[test]]
name = "tpch_fix_test"
path = "tests/tpch_fix_test.rs"
[[test]]
name = "window_function_test"
path = "tests/window_function_test.rs"
[[bench]]
name = "operations"
path = "benches/operations.rs"
harness = false
[dependencies.featherdb-catalog]
version = "1.0.0"
[dependencies.featherdb-core]
version = "1.0.0"
[dependencies.featherdb-crypto]
version = "1.0.0"
[dependencies.featherdb-derive]
version = "1.0.0"
[dependencies.featherdb-mvcc]
version = "1.0.0"
[dependencies.featherdb-query]
version = "1.0.0"
[dependencies.featherdb-storage]
version = "1.0.0"
[dependencies.parking_lot]
version = "0.12"
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.sqlparser]
version = "0.40"
[dependencies.thiserror]
version = "1.0"
[dependencies.uuid]
version = "1.20.0"
features = ["v4"]
[dev-dependencies.criterion]
version = "0.5"
[dev-dependencies.tempfile]
version = "3.0"