tantivy, datafusion and embedded psql are now separate features

This commit is contained in:
Filipriec
2026-08-22 12:23:45 +02:00
parent 0c8a1b1c19
commit cc56ec8695
5 changed files with 116 additions and 3 deletions

View File

@@ -4,6 +4,10 @@ version.workspace = true
edition.workspace = true
license.workspace = true
[features]
default = []
tantivy = ["dep:tantivy"]
[dependencies]
prost-types = { workspace = true }
rust_decimal = { workspace = true }
@@ -14,7 +18,7 @@ prost = "0.14.4"
serde = { version = "1.0.228", features = ["derive"] }
# Search
tantivy = { workspace = true }
tantivy = { workspace = true, optional = true }
serde_json.workspace = true
tonic-prost = "0.14.6"