Files
kumomta/crates/mod-sqlite/Cargo.toml
T
Wez Furlong d2cdd0ca0a tsa: create schema to recall events and actions
This is using an in-memory sqlite db to keep track of events
and actions that we trigger.

In the future, the db will be persisted at a configurable location
on local storage.

Next step is to add endpoints for both config overrides and suspensions
that can be consumed by the mta nodes.
2023-08-02 16:42:33 -07:00

15 lines
384 B
TOML

[package]
name = "mod-sqlite"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
anyhow = "1.0"
config = {path="../config"}
mlua = {version="0.8", features=["vendored", "lua54", "async", "send", "serialize"]}
serde_json = "1.0"
sqlite = "0.31"
tokio = {version="1.25", features=["rt"]}