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.
17 lines
326 B
TOML
17 lines
326 B
TOML
[package]
|
|
name = "dao"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
resolver = "2"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
async-trait = "0.1.80"
|
|
mockall = "0.12.1"
|
|
thiserror = "1.0.59"
|
|
uuid = "1.8"
|
|
|
|
[dependencies.time]
|
|
version = "0.3.36"
|
|
features = ["parsing"]
|