Files
kumomta/crates/data-loader/Cargo.toml
T
Wez Furlong d843579d1e refactor: control some dep versions via workspace Cargo.toml
This makes it easier to upgrade the version holistically later.
2023-08-17 10:49:25 -07:00

20 lines
538 B
TOML

[package]
name = "data-loader"
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 = {workspace=true, features=["vendored", "lua54", "async", "send", "serialize"]}
serde = {version="1.0", features=["derive"]}
serde_json = "1.0"
tokio = {workspace=true, features=["fs"]}
vaultrs = "0.6"
[dev-dependencies]
tokio = {workspace=true, features=["fs", "io-std", "process", "macros"]}
which = "4.4"