Compare commits

..

1 Commits

Author SHA1 Message Date
8bcda05da7 Update Rust crate log to v0.4.22
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2024-06-29 00:17:17 +00:00
5 changed files with 807 additions and 1137 deletions

1913
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,19 +1,19 @@
[package]
name = "oidc-test-client"
version = "0.1.0"
edition = "2024"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
light-openid = { version = "1.0.4", features=["crypto-wrapper"] }
light-openid = { version = "1.0.2", features=["crypto-wrapper"] }
log = "0.4.21"
env_logger = "0.11.7"
clap = { version = "4.5.34", features = ["derive", "env"] }
env_logger = "0.11.3"
clap = { version = "4.5.4", features = ["derive", "env"] }
lazy_static = "1.4.0"
actix-web = "4.5.1"
askama = "0.14.0"
askama = "0.12.1"
serde = { version = "1.0.198", features = ["derive"] }
serde_json = "1.0.140"
reqwest = { version = "0.12.15", features = ["json"] }
actix-remote-ip = "0.1.0"
serde_json = "1.0.115"
reqwest = { version = "0.12.4", features = ["json"] }
actix-remote-ip = "0.1.0"

View File

@ -1,4 +1,4 @@
FROM debian:bookworm-slim
FROM debian:bullseye-slim
RUN apt-get update \
&& apt-get install -y libcurl4 \
@ -6,4 +6,4 @@ RUN apt-get update \
COPY oidc-test-client /usr/local/bin/oidc-test-client
ENTRYPOINT ["/usr/local/bin/oidc-test-client"]
ENTRYPOINT /usr/local/bin/oidc-test-client

View File

@ -1,8 +1,9 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [
":automergeAll",
":enableVulnerabilityAlerts",
":ignoreUnstable"
"packageRules": [
{
"matchUpdateTypes": ["minor", "patch"],
"automerge": true
}
]
}

View File

@ -1,6 +1,6 @@
use actix_remote_ip::{RemoteIP, RemoteIPConfig};
use actix_web::middleware::Logger;
use actix_web::{App, HttpResponse, HttpServer, get, web};
use actix_web::{get, web, App, HttpResponse, HttpServer};
use askama::Template;
use light_openid::basic_state_manager::BasicStateManager;
use light_openid::primitives::OpenIDConfig;