1
0
mirror of https://github.com/osmarks/maghammer.git synced 2025-09-13 07:46:02 +00:00

update dependencies, better tracing, fix semantic chunking, fix bug

This commit is contained in:
2024-10-20 07:22:42 +01:00
parent 503c64f989
commit a11bc0b22d
17 changed files with 1309 additions and 732 deletions

View File

@@ -5,7 +5,7 @@ edition = "2021"
[dependencies]
tokio-postgres = { version = "0.7", features = ["with-chrono-0_4", "with-serde_json-1"] }
tokio = { version = "1", features = ["full"]}
tokio = { version = "1", features = ["full", "tracing"]}
chrono = { version = "0.4", features = ["serde"] }
anyhow = "1"
async-walkdir = "2"
@@ -16,8 +16,6 @@ toml = "0.8"
serde = { version = "1", features = ["derive"] }
reqwest = "0.12"
deadpool-postgres = "0.14"
log = "0.4"
pretty_env_logger = "0.5"
pgvector = { version = "0.3", features = ["postgres", "halfvec"] }
tokenizers = { version = "0.19", features = ["http"] }
regex = "1"
@@ -42,4 +40,11 @@ im = { version = "15", features = ["serde"] }
sea-query = { version = "0.30", features = ["backend-postgres", "postgres-array"] }
sea-query-postgres = { version = "0.4", features = ["postgres-array"] }
ulid = { version = "1", features = ["serde"] }
mail-parser = "0.9"
mail-parser = "0.9"
pcre2 = "0.2"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
console-subscriber = "0.4"
[patch.crates-io]
pcre2-sys = { git = "https://github.com/osmarks/rust-pcre2/", rev = "ec7d5cf" }