Compare commits
1 Commits
948473c171
...
1fd3d4d3a9
| Author | SHA1 | Date | |
|---|---|---|---|
|
1fd3d4d3a9
|
@@ -1,2 +0,0 @@
|
||||
[env]
|
||||
RUSTC_BOOTSTRAP = "1"
|
||||
@@ -2,7 +2,7 @@ fail_fast: true
|
||||
|
||||
repos:
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v5.0.0
|
||||
rev: v6.0.0
|
||||
hooks:
|
||||
- id: trailing-whitespace
|
||||
- id: end-of-file-fixer
|
||||
@@ -14,7 +14,7 @@ repos:
|
||||
- id: check-merge-conflict
|
||||
|
||||
- repo: https://github.com/crate-ci/typos
|
||||
rev: v1.31.1
|
||||
rev: typos-dict-v0.13.13
|
||||
hooks:
|
||||
- id: typos
|
||||
args: ["--force-exclude"]
|
||||
@@ -72,6 +72,6 @@ repos:
|
||||
pass_filenames: false
|
||||
|
||||
- repo: https://github.com/hadolint/hadolint
|
||||
rev: v2.12.0
|
||||
rev: v2.14.0
|
||||
hooks:
|
||||
- id: hadolint
|
||||
|
||||
938
Cargo.lock
generated
938
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
20
Cargo.toml
20
Cargo.toml
@@ -5,17 +5,17 @@ edition = "2024"
|
||||
default-run = "authelia-controller"
|
||||
|
||||
[dependencies]
|
||||
color-eyre = "0.6.3"
|
||||
color-eyre = "0.6.5"
|
||||
dotenvy = "0.15.7"
|
||||
futures-util = "0.3.31"
|
||||
git-version = "0.3.9"
|
||||
k8s-openapi = { version = "0.24.0", features = ["v1_31"] }
|
||||
kube = { version = "0.99.0", features = ["derive", "runtime"] }
|
||||
schemars = "0.8.22"
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
serde_json = "1.0.140"
|
||||
k8s-openapi = { version = "0.26.1", features = ["v1_34"] }
|
||||
kube = { version = "2.0.1", features = ["derive", "runtime"] }
|
||||
schemars = "1.1.0"
|
||||
serde = { version = "1.0.228", features = ["derive"] }
|
||||
serde_json = "1.0.146"
|
||||
serde_yaml = "0.9.34"
|
||||
thiserror = "2.0.12"
|
||||
tokio = { version = "1.44.2", features = ["full"] }
|
||||
tracing = "0.1.41"
|
||||
tracing-subscriber = { version = "0.3.19", features = ["env-filter", "json"] }
|
||||
thiserror = "2.0.17"
|
||||
tokio = { version = "1.48.0", features = ["full"] }
|
||||
tracing = "0.1.44"
|
||||
tracing-subscriber = { version = "0.3.22", features = ["env-filter", "json"] }
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
FROM rust:1.86 AS base
|
||||
FROM rust:1.92 AS base
|
||||
ENV CARGO_REGISTRIES_CRATES_IO_PROTOCOL=sparse
|
||||
RUN cargo install cargo-chef --locked --version 0.1.71 && \
|
||||
cargo install cargo-auditable --locked --version 0.6.6
|
||||
@@ -17,7 +17,7 @@ ARG RELEASE_VERSION
|
||||
ENV RELEASE_VERSION=${RELEASE_VERSION}
|
||||
RUN cargo auditable build --release
|
||||
|
||||
FROM gcr.io/distroless/cc-debian12:nonroot AS runtime
|
||||
FROM gcr.io/distroless/cc-debian13:nonroot AS runtime
|
||||
COPY --from=builder /app/target/release/authelia-controller /authelia-controller
|
||||
COPY --from=builder /app/target/release/crdgen /crdgen
|
||||
CMD ["/authelia-controller"]
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
[toolchain]
|
||||
channel = "1.86"
|
||||
channel = "1.92"
|
||||
profile = "default"
|
||||
components = ["rust-analyzer"]
|
||||
|
||||
@@ -1,4 +1,3 @@
|
||||
#![feature(let_chains)]
|
||||
pub mod context;
|
||||
pub mod resources;
|
||||
mod version;
|
||||
|
||||
Reference in New Issue
Block a user