fixed now it all compiled successfuly

This commit is contained in:
filipriec
2025-06-08 20:14:44 +02:00
parent b60e03eb70
commit 4b4301ad49
5 changed files with 8 additions and 4 deletions

2
Cargo.lock generated
View File

@@ -2831,6 +2831,7 @@ dependencies = [
name = "server"
version = "0.3.13"
dependencies = [
"anyhow",
"bcrypt",
"chrono",
"common",
@@ -2847,6 +2848,7 @@ dependencies = [
"sqlx",
"steel-core",
"steel-derive 0.5.0 (git+https://github.com/mattwparas/steel.git?branch=master)",
"tantivy",
"thiserror 2.0.12",
"time",
"tokio",

View File

@@ -36,4 +36,7 @@ dotenvy = "0.15.7"
lazy_static = "1.5.0"
tracing = "0.1.41"
# Search crate
tantivy = "0.24.1"
common = { path = "./common" }

View File

@@ -12,6 +12,6 @@ serde_json = { workspace = true }
tokio = { workspace = true }
tonic = { workspace = true }
tracing = { workspace = true }
tantivy = { workspace = true }
common = { path = "../common" }
tantivy = "0.24.1"

View File

@@ -8,6 +8,8 @@ license = "AGPL-3.0-or-later"
common = { path = "../common" }
search = { path = "../search" }
anyhow = { workspace = true }
tantivy = { workspace = true }
chrono = { version = "0.4.40", features = ["serde"] }
dotenvy = "0.15.7"
prost = "0.13.5"

View File

@@ -1,3 +0,0 @@
// src/bin/mod.rs
pub mod manual_indexer;