-
-
Notifications
You must be signed in to change notification settings - Fork 26
Expand file tree
/
Copy pathCargo.toml
More file actions
46 lines (39 loc) · 1001 Bytes
/
Copy pathCargo.toml
File metadata and controls
46 lines (39 loc) · 1001 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[package]
name = "nexum_core"
version = "0.4.0"
edition = "2021"
license = "MIT"
authors = ["Aviral Garg"]
repository = "https://github.com/aviralgarg05/NexumDB"
description = "AI-native database core engine with SQL and semantic caching"
keywords = ["database", "ai", "sql", "semantic-cache"]
categories = ["database-implementations"]
[dependencies]
sled = { workspace = true }
sqlparser = { workspace = true }
pyo3 = { workspace = true }
anyhow = { workspace = true }
thiserror = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
regex = "1.12"
log = "0.4"
[dev-dependencies]
tempfile = "3.24"
criterion = { version = "0.5", features = ["html_reports"] }
rusqlite = "0.31.0" # To interface with SQLite for comparison
[[bench]]
name = "db_comparison"
harness = false
[[bench]]
name = "storage_bench"
harness = false
[[bench]]
name = "sql_bench"
harness = false
[[bench]]
name = "executor_bench"
harness = false
[[bench]]
name = "filter_bench"
harness = false