mnemo-admin 0.5.25

Admin dashboard for Mnemo memory database
Documentation
[package]
name = "mnemo-admin"
version.workspace = true
edition.workspace = true
license.workspace = true
description = "Admin dashboard for Mnemo memory database"

[dependencies]
mnemo-core = { workspace = true }
axum = { workspace = true }
tower-http = { workspace = true }
tokio = { workspace = true }
serde = { workspace = true }
serde_json = { workspace = true }
uuid = { workspace = true }
tracing = { workspace = true }

[dev-dependencies]
mnemo-core = { workspace = true }
tokio = { workspace = true }
serde_json = { workspace = true }
tower = { version = "0.5", features = ["util"] }
http-body-util = "0.1"
hyper = "1"
tempfile = { workspace = true }
# v0.4.0 — admin tests share DuckDB extension state through a static
# init the C library does inside `Connection::open`; running two of
# them in parallel on Ubuntu CI surfaces "Current transaction is
# aborted". `#[serial]` forces sequential execution per test.
# v0.5.x — bumped 3 -> 4 (Dependabot #135). The 4.0 break is an internal/MSRV
# change; the `#[serial_test::serial]` attribute used in tests/admin_test.rs is
# unchanged, so there are no call sites to migrate.
serial_test = "4"