Compare commits

..

1 Commits

Author SHA1 Message Date
9feca0a34e Update Rust crate basic-jwt to 0.4.0
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-12-18 00:39:00 +00:00
6 changed files with 1351 additions and 1327 deletions

View File

@@ -5,7 +5,7 @@ name: default
steps: steps:
- name: frontend_build - name: frontend_build
image: node:25 image: node:24
volumes: volumes:
- name: frontend_app - name: frontend_app
path: /tmp/frontend_build path: /tmp/frontend_build

File diff suppressed because it is too large Load Diff

View File

@@ -6,11 +6,11 @@ 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]
log = "0.4.29" log = "0.4.28"
env_logger = "0.11.8" env_logger = "0.11.8"
clap = { version = "4.5.54", features = ["derive", "env"] } clap = { version = "4.5.53", features = ["derive", "env"] }
serde = { version = "1.0.228", features = ["derive"] } serde = { version = "1.0.228", features = ["derive"] }
light-openid = { version = "1.1.0", features = ["crypto-wrapper"] } light-openid = { version = "1.0.4", features = ["crypto-wrapper"] }
basic-jwt = "0.4.0" basic-jwt = "0.4.0"
actix-web = "4.12.1" actix-web = "4.12.1"
actix-remote-ip = "0.1.0" actix-remote-ip = "0.1.0"
@@ -19,10 +19,10 @@ actix-identity = "0.9.0"
actix-cors = "0.7.1" actix-cors = "0.7.1"
lazy_static = "1.5.0" lazy_static = "1.5.0"
anyhow = "1.0.100" anyhow = "1.0.100"
reqwest = { version = "0.13.1", features = ["json"] } reqwest = { version = "0.12.24", features = ["json"] }
thiserror = "2.0.18" thiserror = "2.0.17"
uuid = { version = "1.19.0", features = ["v4", "serde"] } uuid = { version = "1.18.1", features = ["v4", "serde"] }
futures-util = "0.3.31" futures-util = "0.3.31"
lazy-regex = "3.5.1" lazy-regex = "3.4.2"
mime_guess = "2.0.5" mime_guess = "2.0.5"
rust-embed = { version = "8.11.0" } rust-embed = { version = "8.7.2" }

View File

@@ -55,12 +55,6 @@ impl From<Box<dyn Error>> for HttpErr {
} }
} }
impl From<light_openid::errors::OpenIdError> for HttpErr {
fn from(value: light_openid::errors::OpenIdError) -> Self {
HttpErr::Err(std::io::Error::other(value.to_string()).into())
}
}
impl From<std::io::Error> for HttpErr { impl From<std::io::Error> for HttpErr {
fn from(value: std::io::Error) -> Self { fn from(value: std::io::Error) -> Self {
HttpErr::Err(value.into()) HttpErr::Err(value.into())

File diff suppressed because it is too large Load Diff

View File

@@ -10,7 +10,7 @@
"preview": "vite preview" "preview": "vite preview"
}, },
"dependencies": { "dependencies": {
"@fluentui/react-components": "^9.72.9", "@fluentui/react-components": "^9.72.8",
"@fluentui/react-icons": "^2.0.316", "@fluentui/react-icons": "^2.0.316",
"filesize": "^11.0.13", "filesize": "^11.0.13",
"react": "^19.2.3", "react": "^19.2.3",
@@ -18,17 +18,17 @@
}, },
"devDependencies": { "devDependencies": {
"@eslint/js": "^9.39.2", "@eslint/js": "^9.39.2",
"@types/react": "^19.2.9", "@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3", "@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.53.1", "@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.53.1", "@typescript-eslint/parser": "^8.48.1",
"@vitejs/plugin-react": "^5.1.2", "@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2", "eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1", "eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26", "eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.0.0", "globals": "^16.5.0",
"typescript": "^5.9.3", "typescript": "^5.9.3",
"typescript-eslint": "^8.53.1", "typescript-eslint": "^8.48.0",
"vite": "^7.3.1" "vite": "^7.2.7"
} }
} }