2026-08-20 19:10:09 -07:00
|
|
|
[package]
|
|
|
|
|
name = "mem-core"
|
|
|
|
|
version = "0.1.0"
|
|
|
|
|
edition = "2021"
|
2026-08-28 09:29:56 -07:00
|
|
|
publish = false
|
2026-08-20 19:10:09 -07:00
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
|
tokio = { workspace = true }
|
|
|
|
|
futures = { workspace = true }
|
|
|
|
|
serde = { workspace = true }
|
|
|
|
|
serde_json = { workspace = true }
|
2026-08-22 21:43:23 -07:00
|
|
|
serde_yaml = { workspace = true }
|
2026-08-20 19:10:09 -07:00
|
|
|
anyhow = { workspace = true }
|
|
|
|
|
thiserror = { workspace = true }
|
|
|
|
|
sha2 = { workspace = true }
|
|
|
|
|
tracing = { workspace = true }
|
|
|
|
|
hex = "0.4"
|
|
|
|
|
time = { version = "0.3", features = ["serde", "formatting", "parsing", "macros"] }
|
2026-08-28 15:42:06 -07:00
|
|
|
# magika and ort removed: CI runner glibc too old for ort's C23 symbols
|
|
|
|
|
# regex fallback in router.rs covers all content types
|
2026-08-28 09:29:56 -07:00
|
|
|
regex = "1.10"
|
2026-08-28 09:39:31 -07:00
|
|
|
once_cell = "1.19"
|
|
|
|
|
indexmap = "2.0"
|
2026-08-28 10:02:52 -07:00
|
|
|
lazy_static = "1.4"
|
2026-08-28 12:13:14 -07:00
|
|
|
async-trait = "0.1.92"
|