Compare commits

..

1 Commits

Author SHA1 Message Date
db87a5d32d 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-19 00:43:48 +00:00
6 changed files with 839 additions and 815 deletions

View File

@@ -5,7 +5,7 @@ name: default
steps:
- name: frontend_build
image: node:25
image: node:24
volumes:
- name: frontend_app
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
[dependencies]
log = "0.4.29"
log = "0.4.28"
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"] }
light-openid = { version = "1.1.0", features = ["crypto-wrapper"] }
light-openid = { version = "1.0.4", features = ["crypto-wrapper"] }
basic-jwt = "0.4.0"
actix-web = "4.12.1"
actix-remote-ip = "0.1.0"
@@ -19,10 +19,10 @@ actix-identity = "0.9.0"
actix-cors = "0.7.1"
lazy_static = "1.5.0"
anyhow = "1.0.100"
reqwest = { version = "0.13.1", features = ["json"] }
thiserror = "2.0.18"
uuid = { version = "1.19.0", features = ["v4", "serde"] }
reqwest = { version = "0.12.24", features = ["json"] }
thiserror = "2.0.17"
uuid = { version = "1.18.1", features = ["v4", "serde"] }
futures-util = "0.3.31"
lazy-regex = "3.5.1"
lazy-regex = "3.4.2"
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 {
fn from(value: std::io::Error) -> Self {
HttpErr::Err(value.into())

File diff suppressed because it is too large Load Diff

View File

@@ -18,17 +18,17 @@
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/react": "^19.2.8",
"@types/react": "^19.2.7",
"@types/react-dom": "^19.2.3",
"@typescript-eslint/eslint-plugin": "^8.53.1",
"@typescript-eslint/parser": "^8.53.1",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"@vitejs/plugin-react": "^5.1.2",
"eslint": "^9.39.2",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.26",
"globals": "^17.0.0",
"globals": "^16.5.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.53.1",
"vite": "^7.3.1"
"typescript-eslint": "^8.48.0",
"vite": "^7.2.7"
}
}