Compare commits
45 Commits
afe5f6b210
...
master
Author | SHA1 | Date | |
---|---|---|---|
1ef740d6be | |||
3b2ba625bc | |||
c7b3d8c3b9 | |||
ef299004e6 | |||
980b88c57d | |||
990b00018f | |||
ddf5767a2c | |||
cf263a186d | |||
93c45daa55 | |||
25af78b124 | |||
9bf554c7ed | |||
4f5f18b631 | |||
ce46fee976 | |||
5f3c984d9b | |||
90ebf4c4c6 | |||
7869c3a863 | |||
17d3627ef7 | |||
071950529c | |||
c2d34ae921 | |||
4921f71b09 | |||
96003a6033 | |||
821bd6ff86 | |||
68eaf7ea3f | |||
ab58c99c4c | |||
109b29268c | |||
f08c2a501d | |||
71a32a047e | |||
90d9c31ed3 | |||
e30978c651 | |||
f4c033b70c | |||
d7596041c7 | |||
a9489056d3 | |||
3ebe046ccd | |||
6d6d4a4cda | |||
21b82dd04d | |||
05bda52605 | |||
34adfbe1fb | |||
ef808c3616 | |||
8343409edc | |||
1d561212af | |||
82cdc5174f | |||
e6d561fbb4 | |||
49bbbd5856 | |||
cb38218e9c | |||
e26e6ce384 |
1476
Cargo.lock
generated
1476
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
14
Cargo.toml
14
Cargo.toml
@ -1,19 +1,19 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "oidc-test-client"
|
name = "oidc-test-client"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
edition = "2021"
|
edition = "2024"
|
||||||
|
|
||||||
# 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.2", features=["crypto-wrapper"] }
|
light-openid = { version = "1.0.4", features=["crypto-wrapper"] }
|
||||||
log = "0.4.21"
|
log = "0.4.21"
|
||||||
env_logger = "0.11.3"
|
env_logger = "0.11.7"
|
||||||
clap = { version = "4.5.4", features = ["derive", "env"] }
|
clap = { version = "4.5.34", 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.12.1"
|
askama = "0.14.0"
|
||||||
serde = { version = "1.0.198", features = ["derive"] }
|
serde = { version = "1.0.198", features = ["derive"] }
|
||||||
serde_json = "1.0.115"
|
serde_json = "1.0.140"
|
||||||
reqwest = { version = "0.12.4", features = ["json"] }
|
reqwest = { version = "0.12.15", features = ["json"] }
|
||||||
actix-remote-ip = "0.1.0"
|
actix-remote-ip = "0.1.0"
|
@ -1,4 +1,4 @@
|
|||||||
FROM debian:bullseye-slim
|
FROM debian:bookworm-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"]
|
||||||
|
@ -1,9 +1,8 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"packageRules": [
|
"extends": [
|
||||||
{
|
":automergeAll",
|
||||||
"matchUpdateTypes": ["minor", "patch"],
|
":enableVulnerabilityAlerts",
|
||||||
"automerge": true
|
":ignoreUnstable"
|
||||||
}
|
|
||||||
]
|
]
|
||||||
}
|
}
|
@ -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::{get, web, App, HttpResponse, HttpServer};
|
use actix_web::{App, HttpResponse, HttpServer, get, web};
|
||||||
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;
|
||||||
|
Reference in New Issue
Block a user