20 lines
583 B
TOML
20 lines
583 B
TOML
[package]
|
|
name = "service"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
tracing = { workspace = true }
|
|
chrono = { workspace = true }
|
|
reqwest = { workspace = true }
|
|
futures-executor = { workspace = true }
|
|
error-stack = { workspace = true }
|
|
sqlx = { workspace = true, features = ["uuid"] }
|
|
moka = { workspace = true, features = ["future", "logging"] }
|
|
lazy_static = { workspace = true }
|
|
|
|
library = { path = "../library" }
|
|
domain = { path = "../domain" }
|
|
i18n = { path = "../i18n" } |