From 258726cd8734649c2f059c5cf212cdbff693afbc Mon Sep 17 00:00:00 2001 From: Simon Goller Date: Wed, 5 Jun 2024 18:04:27 +0200 Subject: [PATCH] Disable features --- app/Cargo.toml | 3 ++- rest/Cargo.toml | 3 ++- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/app/Cargo.toml b/app/Cargo.toml index 86415f5..692bde3 100644 --- a/app/Cargo.toml +++ b/app/Cargo.toml @@ -6,8 +6,9 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] -default = ["mock_auth"] +#default = ["mock_auth"] #default = ["oidc"] +default = [] oidc = [] mock_auth = [] diff --git a/rest/Cargo.toml b/rest/Cargo.toml index fe018a5..1783e40 100644 --- a/rest/Cargo.toml +++ b/rest/Cargo.toml @@ -5,8 +5,9 @@ edition = "2021" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html [features] -default = ["mock_auth"] +#default = ["mock_auth"] #default = ["oidc"] +default = [] oidc = ["dep:axum-oidc"] mock_auth = []