mirror of
https://github.com/mailscope/kumomta.git
synced 2026-09-08 11:38:56 +00:00
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.
15 lines
384 B
TOML
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"]}
|