Files
poimen-memory/Cargo.toml
T
rock 90f21f3db3
CI / CI (pull_request) Failing after 5m16s
fix: resolve 8 integration test compilation errors
Root causes:
  1. Ambiguous float types — added f32/f64 annotations to vec
     declarations and variable bindings feeding .abs()/.max()/.min()
  2. chrono API change — replaced with_hour(0) chain with
     date_naive().and_hms_opt(0,0,0).unwrap().and_utc()
  3. Missing dev-dependencies — added sqlx + base64 to [dev-dependencies]
  4. Generic parse error — wrapped f32 comparison in parens
  5. Incorrect assertion — 3^5=243 > 100, changed nodes to 1000

Files fixed (8):
  - it_community_detection_4_3.rs (float type annotations)
  - it_faceted_search_4_5.rs (chrono API + float)
  - it_inference_engine_5_2.rs (float type annotations)
  - it_path_finding_4_4.rs (float + assertion fix)
  - it_query_reasoning_5_3.rs (float type annotations)
  - it_semantic_retrieval_4_1.rs (sqlx/base64 deps + float)
  - it_summarization_5_4.rs (parens for generic parse)
  - it_temporal_filtering_4_2_fixed.rs (chrono API)

Result: 20 test suites, 0 failures, cargo build clean
2026-09-08 16:54:28 -07:00

74 lines
1.9 KiB
TOML

[package]
name = "poimen-memory"
version = "0.1.0"
edition = "2021"
publish = false
[workspace]
members = [
".",
"crates/mem-core",
"crates/mem-chunk",
"crates/mem-llm",
"crates/mem-ingest",
"crates/mem-store",
"crates/mem-cli",
]
resolver = "2"
[workspace.dependencies]
tokio = { version = "1.35", features = ["full"] }
futures = "0.3"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
anyhow = "1.0"
thiserror = "1.0"
sha2 = "0.10"
clap = { version = "4.4", features = ["derive"] }
reqwest = { version = "0.11", features = ["json"] }
tracing = "0.1"
tracing-subscriber = "0.3"
toml = "0.8"
hex = "0.4"
time = { version = "0.3", features = ["serde", "formatting", "parsing", "macros"] }
chrono = { version = "0.4", features = ["serde"] }
tokenizers = "0.13"
once_cell = "1.19"
actix-web = "4.4"
actix-rt = "2.9"
uuid = { version = "1.6", features = ["v4", "serde"] }
async-trait = "0.1"
urlencoding = "2.1"
base64 = "0.21"
sqlx = { version = "0.7", features = ["postgres", "runtime-tokio-rustls", "chrono", "uuid", "json"] }
pgvector = { version = "0.2", features = ["sqlx"] }
jsonwebtoken = "9.2"
regex = "1.10"
[dev-dependencies]
toml = { workspace = true }
mem-core = { path = "crates/mem-core" }
mem-chunk = { path = "crates/mem-chunk" }
mem-ingest = { path = "crates/mem-ingest" }
mem-llm = { path = "crates/mem-llm" }
mem-store = { path = "crates/mem-store" }
mem-cli = { path = "crates/mem-cli" }
anyhow = { workspace = true }
serde_json = { workspace = true }
time = { workspace = true }
tokio = { workspace = true }
futures = { workspace = true }
actix-web = { workspace = true }
actix-rt = { workspace = true }
wiremock = "0.6"
chrono = { version = "0.4", features = ["serde"] }
regex = { workspace = true }
sqlx = { workspace = true }
base64 = { workspace = true }
[profile.release]
opt-level = 3
lto = true
codegen-units = 1