Files
kumomta/crates/mod-sqlite/Cargo.toml
T
Wez Furlong b287db1944 ensure that we statically link sqlite
This avoids picking up a dynamic dep on libsqlite3.so
when we build the docker image.
2023-03-13 19:41:33 -07:00

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"]}