By default, it will build with the dev-setup where authenticated user will be faked since there is no login page on the local dev setup. In order to compile it with oidc, disable default features and enable the oidc feature.
30 lines
516 B
TOML
30 lines
516 B
TOML
[package]
|
|
name = "service_impl"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.80"
|
|
mockall = "0.12.1"
|
|
tokio = "1.37.0"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies.service]
|
|
path = "../service"
|
|
|
|
[dependencies.dao]
|
|
path = "../dao"
|
|
|
|
[dependencies.time]
|
|
version = "0.3.36"
|
|
features = ["std"]
|
|
|
|
[dependencies.uuid]
|
|
version = "1.8.0"
|
|
features = ["v4"]
|
|
|
|
[dev-dependencies.tokio]
|
|
version = "1.37.0"
|
|
features = ["full"]
|