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

View File

@ -1,4 +1,4 @@
FROM debian:bookworm-slim FROM debian:bullseye-slim
RUN apt-get update \ RUN apt-get update \
&& apt-get install -y libcurl4 \ && apt-get install -y libcurl4 \
@ -6,4 +6,4 @@ RUN apt-get update \
COPY oidc-test-client /usr/local/bin/oidc-test-client 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", "$schema": "https://docs.renovatebot.com/renovate-schema.json",
"extends": [ "packageRules": [
":automergeAll", {
":enableVulnerabilityAlerts", "matchUpdateTypes": ["minor", "patch"],
":ignoreUnstable" "automerge": true
}
] ]
} }

View File

@ -1,6 +1,6 @@
use actix_remote_ip::{RemoteIP, RemoteIPConfig}; use actix_remote_ip::{RemoteIP, RemoteIPConfig};
use actix_web::middleware::Logger; 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 askama::Template;
use light_openid::basic_state_manager::BasicStateManager; use light_openid::basic_state_manager::BasicStateManager;
use light_openid::primitives::OpenIDConfig; use light_openid::primitives::OpenIDConfig;