Compare commits
75 Commits
eadd96e0af
...
renovate/r
| Author | SHA1 | Date | |
|---|---|---|---|
| 492928ab68 | |||
| 6dcfb883f4 | |||
| c3fcc317a7 | |||
| a4ebf63f7e | |||
| 09fde0222d | |||
| 261839b323 | |||
| 15ba1600c3 | |||
| f0f47f0154 | |||
| 3a81c8846c | |||
| 3f6aa145e5 | |||
| 6a05941842 | |||
| ee300904a9 | |||
| 8a7a6a4541 | |||
| d533e55931 | |||
| c7ac8013f9 | |||
| f0970f7c65 | |||
| 0f3eecad7f | |||
| 43bbbb94fb | |||
| f6ba983c51 | |||
| 6a954c047e | |||
| bbd9c0106f | |||
| 4efd341344 | |||
| e77ef468a9 | |||
| 1796c4b252 | |||
| 7be5bc0c46 | |||
| 26630a0abd | |||
| 232b01a4c3 | |||
| e6ae6f56e2 | |||
| d560fc352a | |||
| 5c889cf9f0 | |||
| bcb2ebe48a | |||
| 077575b8b1 | |||
| 95e2399ea8 | |||
| fc1d1fbf9d | |||
| c435128995 | |||
| c7e953fd1d | |||
| 9c651cdf1a | |||
| c0397d32ce | |||
| b0987c0e49 | |||
| 426ff9ecfc | |||
| 26042a4cec | |||
| fac90dad54 | |||
| 5934c91d63 | |||
| 0ce550a100 | |||
| 469cad6c02 | |||
| f3f587d98a | |||
| 93ccf45afe | |||
| 8e4a7f1f94 | |||
| 2f6222ec1d | |||
| 27ee6bea14 | |||
| fd72131111 | |||
| 95e4c437b1 | |||
| cee3ddce51 | |||
| a73fc596a1 | |||
| 6a2c2799a4 | |||
| 855651c789 | |||
| a5913f0ce9 | |||
| b083234d0b | |||
| f013a04949 | |||
| 1d6fcdaacb | |||
| a64a33c092 | |||
| 2a35680f77 | |||
| 0212bc4389 | |||
| caab115ecc | |||
| f81582556a | |||
| da9b2ae27a | |||
| fc407eb0f4 | |||
| b7c808fac1 | |||
| 54d8d38908 | |||
| 60f1124fa8 | |||
| 0a69d4d5c8 | |||
| 546b5af64f | |||
| c2a397dfea | |||
| 22da344c6b | |||
| bce6285cf4 |
@@ -5,7 +5,7 @@ name: default
|
|||||||
|
|
||||||
steps:
|
steps:
|
||||||
- name: frontend_build
|
- name: frontend_build
|
||||||
image: node:24
|
image: node:25
|
||||||
volumes:
|
volumes:
|
||||||
- name: frontend_app
|
- name: frontend_app
|
||||||
path: /tmp/frontend_build
|
path: /tmp/frontend_build
|
||||||
|
|||||||
832
remote_backend/Cargo.lock
generated
832
remote_backend/Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@@ -6,12 +6,12 @@ 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.28"
|
log = "0.4.29"
|
||||||
env_logger = "0.11.8"
|
env_logger = "0.11.8"
|
||||||
clap = { version = "4.5.53", features = ["derive", "env"] }
|
clap = { version = "4.5.54", features = ["derive", "env"] }
|
||||||
serde = { version = "1.0.228", features = ["derive"] }
|
serde = { version = "1.0.228", features = ["derive"] }
|
||||||
light-openid = { version = "1.0.4", features = ["crypto-wrapper"] }
|
light-openid = { version = "1.1.0", features = ["crypto-wrapper"] }
|
||||||
basic-jwt = "0.3.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"
|
||||||
actix-session = { version = "0.11.0", features = ["cookie-session"] }
|
actix-session = { version = "0.11.0", features = ["cookie-session"] }
|
||||||
@@ -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.12.24", features = ["json"] }
|
reqwest = { version = "0.13.1", features = ["json"] }
|
||||||
thiserror = "2.0.17"
|
thiserror = "2.0.18"
|
||||||
uuid = { version = "1.18.1", features = ["v4", "serde"] }
|
uuid = { version = "1.19.0", features = ["v4", "serde"] }
|
||||||
futures-util = "0.3.31"
|
futures-util = "0.3.31"
|
||||||
lazy-regex = "3.4.2"
|
lazy-regex = "3.5.1"
|
||||||
mime_guess = "2.0.5"
|
mime_guess = "2.0.5"
|
||||||
rust-embed = { version = "8.7.2" }
|
rust-embed = { version = "8.11.0" }
|
||||||
|
|||||||
@@ -55,6 +55,12 @@ 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())
|
||||||
|
|||||||
2408
remote_frontend/package-lock.json
generated
2408
remote_frontend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -10,25 +10,25 @@
|
|||||||
"preview": "vite preview"
|
"preview": "vite preview"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fluentui/react-components": "^9.72.7",
|
"@fluentui/react-components": "^9.72.9",
|
||||||
"@fluentui/react-icons": "^2.0.315",
|
"@fluentui/react-icons": "^2.0.316",
|
||||||
"filesize": "^11.0.13",
|
"filesize": "^11.0.13",
|
||||||
"react": "^19.2.0",
|
"react": "^19.2.3",
|
||||||
"react-dom": "^19.2.0"
|
"react-dom": "^19.2.3"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.39.1",
|
"@eslint/js": "^9.39.2",
|
||||||
"@types/react": "^19.2.7",
|
"@types/react": "^19.2.9",
|
||||||
"@types/react-dom": "^19.2.3",
|
"@types/react-dom": "^19.2.3",
|
||||||
"@typescript-eslint/eslint-plugin": "^8.48.0",
|
"@typescript-eslint/eslint-plugin": "^8.53.1",
|
||||||
"@typescript-eslint/parser": "^8.48.0",
|
"@typescript-eslint/parser": "^8.53.1",
|
||||||
"@vitejs/plugin-react": "^5.1.1",
|
"@vitejs/plugin-react": "^5.1.2",
|
||||||
"eslint": "^9.39.1",
|
"eslint": "^9.39.2",
|
||||||
"eslint-plugin-react-hooks": "^5.2.0",
|
"eslint-plugin-react-hooks": "^7.0.1",
|
||||||
"eslint-plugin-react-refresh": "^0.4.24",
|
"eslint-plugin-react-refresh": "^0.4.26",
|
||||||
"globals": "^16.5.0",
|
"globals": "^17.0.0",
|
||||||
"typescript": "^5.9.3",
|
"typescript": "^5.9.3",
|
||||||
"typescript-eslint": "^8.47.0",
|
"typescript-eslint": "^8.53.1",
|
||||||
"vite": "^7.2.4"
|
"vite": "^7.3.1"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user