fixed now it all compiled successfuly
This commit is contained in:
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -2831,6 +2831,7 @@ dependencies = [
|
|||||||
name = "server"
|
name = "server"
|
||||||
version = "0.3.13"
|
version = "0.3.13"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
|
"anyhow",
|
||||||
"bcrypt",
|
"bcrypt",
|
||||||
"chrono",
|
"chrono",
|
||||||
"common",
|
"common",
|
||||||
@@ -2847,6 +2848,7 @@ dependencies = [
|
|||||||
"sqlx",
|
"sqlx",
|
||||||
"steel-core",
|
"steel-core",
|
||||||
"steel-derive 0.5.0 (git+https://github.com/mattwparas/steel.git?branch=master)",
|
"steel-derive 0.5.0 (git+https://github.com/mattwparas/steel.git?branch=master)",
|
||||||
|
"tantivy",
|
||||||
"thiserror 2.0.12",
|
"thiserror 2.0.12",
|
||||||
"time",
|
"time",
|
||||||
"tokio",
|
"tokio",
|
||||||
|
|||||||
@@ -36,4 +36,7 @@ dotenvy = "0.15.7"
|
|||||||
lazy_static = "1.5.0"
|
lazy_static = "1.5.0"
|
||||||
tracing = "0.1.41"
|
tracing = "0.1.41"
|
||||||
|
|
||||||
|
# Search crate
|
||||||
|
tantivy = "0.24.1"
|
||||||
|
|
||||||
common = { path = "./common" }
|
common = { path = "./common" }
|
||||||
|
|||||||
@@ -12,6 +12,6 @@ serde_json = { workspace = true }
|
|||||||
tokio = { workspace = true }
|
tokio = { workspace = true }
|
||||||
tonic = { workspace = true }
|
tonic = { workspace = true }
|
||||||
tracing = { workspace = true }
|
tracing = { workspace = true }
|
||||||
|
tantivy = { workspace = true }
|
||||||
|
|
||||||
common = { path = "../common" }
|
common = { path = "../common" }
|
||||||
tantivy = "0.24.1"
|
|
||||||
|
|||||||
@@ -8,6 +8,8 @@ license = "AGPL-3.0-or-later"
|
|||||||
common = { path = "../common" }
|
common = { path = "../common" }
|
||||||
search = { path = "../search" }
|
search = { path = "../search" }
|
||||||
|
|
||||||
|
anyhow = { workspace = true }
|
||||||
|
tantivy = { workspace = true }
|
||||||
chrono = { version = "0.4.40", features = ["serde"] }
|
chrono = { version = "0.4.40", features = ["serde"] }
|
||||||
dotenvy = "0.15.7"
|
dotenvy = "0.15.7"
|
||||||
prost = "0.13.5"
|
prost = "0.13.5"
|
||||||
|
|||||||
@@ -1,3 +0,0 @@
|
|||||||
// src/bin/mod.rs
|
|
||||||
|
|
||||||
pub mod manual_indexer;
|
|
||||||
Reference in New Issue
Block a user