26 lines
578 B
TOML
26 lines
578 B
TOML
[package]
|
|
name = "zclaw-memory"
|
|
version.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description = "ZCLAW memory substrate with SQLite storage"
|
|
|
|
[dependencies]
|
|
zclaw-types = { workspace = true }
|
|
|
|
tokio = { workspace = true }
|
|
serde = { workspace = true }
|
|
serde_json = { workspace = true }
|
|
thiserror = { workspace = true }
|
|
uuid = { workspace = true }
|
|
chrono = { workspace = true }
|
|
tracing = { workspace = true }
|
|
|
|
# SQLite
|
|
sqlx = { workspace = true }
|
|
|
|
# Async utilities
|
|
futures = { workspace = true }
|