tidaldb/tidal/Cargo.toml
jordan 39ada28c6e feat: complete Milestones 2–4 — RETRIEVE query, vector index, ranking profiles, diversity, entity system, sessions
M2: RETRIEVE query pipeline with 5-stage execution (candidate → filter → score → diversify → limit),
    usearch HNSW vector index, bitmap/range/universe filters, ranking profiles with signal scoring,
    MMR diversity enforcement, and m2_uat integration tests.

M3: Entity system with typed metadata, relationship graph (follows/blocks/interactions),
    creator entities, session tracking, and m3_uat integration tests.

M4: Advanced ranking with builtin functions (freshness, trending, controversy, wilson),
    ranking executor with explain mode, query executor integration, benchmarks for
    query/ranking/vector/filters/diversity, and m4_uat integration tests.

Includes: 9 new blog posts, marketing site updates, updated roadmap, and updated vision doc.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-21 16:24:48 -07:00

97 lines
1.7 KiB
TOML

[package]
name = "tidaldb"
version = "0.1.0"
edition = "2024"
rust-version = "1.91"
description = "Embeddable database for personalized content ranking"
license = "MIT"
[features]
test-utils = ["dep:tempfile"]
metrics = [] # hand-rolled HTTP, no new crate deps
[dependencies]
base64 = "0.22"
blake3 = "1"
crossbeam = "0.8"
dashmap = "6"
fjall = "3"
rand = "0.9"
roaring = "0.10"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
tempfile = { version = "3", optional = true }
tracing = "0.1"
usearch = "2.24.0"
[dev-dependencies]
actix-web = "4"
axum = "0.8"
criterion = { version = "0.5", features = ["html_reports"] }
proptest = "1"
tempfile = "3"
tokio = { version = "1", features = ["macros", "rt-multi-thread", "signal"] }
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
[lints.rust]
unsafe_code = "forbid"
[lints.clippy]
all = { level = "deny", priority = -1 }
pedantic = { level = "warn", priority = -1 }
nursery = { level = "warn", priority = -1 }
cast_possible_truncation = "allow"
module_name_repetitions = "allow"
unwrap_used = "deny"
[[example]]
name = "quickstart"
[[example]]
name = "axum_embedding"
[[example]]
name = "actix_embedding"
[[example]]
name = "cli_embedding"
[[test]]
name = "sandboxed_storage"
required-features = ["test-utils"]
[[test]]
name = "metrics_integration"
required-features = ["metrics"]
[[test]]
name = "vector_usearch"
[[bench]]
name = "signals"
harness = false
[[bench]]
name = "storage"
harness = false
[[bench]]
name = "vector"
harness = false
[[bench]]
name = "filters"
harness = false
[[bench]]
name = "ranking"
harness = false
[[bench]]
name = "diversity"
harness = false
[[bench]]
name = "query"
harness = false