41 lines
678 B
TOML
41 lines
678 B
TOML
[package]
|
|
name = "app"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[features]
|
|
default = ["mock_auth"]
|
|
#default = ["oidc"]
|
|
oidc = []
|
|
mock_auth = []
|
|
|
|
[dependencies.rest]
|
|
path = "../rest"
|
|
|
|
[dependencies.dao_impl]
|
|
path = "../dao_impl"
|
|
|
|
[dependencies.dao]
|
|
path = "../dao"
|
|
|
|
[dependencies.service_impl]
|
|
path = "../service_impl"
|
|
|
|
[dependencies.tokio]
|
|
version = "1.37.0"
|
|
features = ["full"]
|
|
|
|
[dependencies.sqlx]
|
|
version = "0.7.4"
|
|
features = ["runtime-tokio", "sqlite"]
|
|
|
|
[dependencies.time]
|
|
version = "0.3.36"
|
|
|
|
[dependencies.time-macros]
|
|
version = "0.2.18"
|
|
|
|
[dependencies.dotenvy]
|
|
version = "0.15"
|