mirror of
https://github.com/mailscope/kumomta.git
synced 2026-09-05 18:18:56 +00:00
This avoids picking up a dynamic dep on libsqlite3.so when we build the docker image.
16 lines
436 B
TOML
16 lines
436 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.30"
|
|
sqlite3-src = {version="0.4", features=["bundled"]}
|
|
tokio = {version="1.25", features=["rt"]}
|