2023-08-18 12:51:02 +01:00

15 lines
498 B
TOML

[package]
name = "salvo-example-api"
version = "0.1.0"
edition = "2021"
[dependencies]
salvo-example-service = { path = "../service" }
tokio = { version = "1.29.0", features = ["macros", "rt-multi-thread"] }
salvo = { version = "0.50", features = ["affix", "serve-static"] }
tracing-subscriber = { version = "0.3.17", features = ["env-filter"] }
serde = { version = "1", features = ["derive"] }
tera = "1.19.0"
dotenvy = "0.15"
entity = { path = "../entity" }
migration = { path = "../migration" }