-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
57 lines (54 loc) · 1.44 KB
/
Copy pathCargo.toml
File metadata and controls
57 lines (54 loc) · 1.44 KB
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
47
48
49
50
51
52
53
54
55
56
57
[workspace]
resolver = "2"
members = [
"samkhya-core",
"samkhya-datafusion",
"samkhya-duckdb",
"samkhya-duckdb-ext",
"samkhya-py",
"samkhya-polars",
"samkhya-postgres",
"samkhya-gpudb",
"samkhya-iceberg",
"samkhya-bench",
"samkhya-cli",
"samkhya-arrow",
"samkhya-wasm",
"samkhya-qdrant",
"samkhya-it",
]
[workspace.package]
version = "1.2.3"
edition = "2024"
license = "Apache-2.0"
authors = ["Prateek Singh"]
repository = "https://github.com/singhpratech/samkhya"
homepage = "https://github.com/singhpratech/samkhya"
readme = "README.md"
rust-version = "1.85"
description = "A provable join-cardinality ceiling for analytical query engines, and the portable statistics that feed it"
keywords = ["database", "cardinality", "query-optimizer", "datafusion", "duckdb"]
categories = ["database"]
[workspace.dependencies]
samkhya-core = { path = "samkhya-core", version = "1.2.3" }
# Foundational
serde = { version = "1", features = ["derive"] }
serde_json = "1"
bincode = "1.3"
thiserror = "2"
byteorder = "1.5"
# Hashing for sketches
twox-hash = "1.6"
# Persistence (feedback recorder)
rusqlite = { version = "0.39", features = ["bundled"] }
# Logging / errors
log = "0.4"
# CLI (bench)
clap = { version = "4", features = ["derive"] }
# Async (for DataFusion / future use)
tokio = { version = "1", features = ["rt-multi-thread", "macros"] }
# Test-only
proptest = "1"
[profile.release]
lto = "thin"
codegen-units = 1