Compare commits
26 Commits
c6ca2653ad
...
master
Author | SHA1 | Date | |
---|---|---|---|
dab4028b67 | |||
ff701ec92f | |||
709aa2e748 | |||
2673b60a80 | |||
f9c2888578 | |||
149dac7eeb | |||
2c46a7e602 | |||
b134d816f4 | |||
be7ffb2a79 | |||
06efa60bf4 | |||
116b2ebb9e | |||
162078ff51 | |||
b0bd323214 | |||
499b4dfb56 | |||
ee4015278a | |||
e6ba048706 | |||
b7d54b79b2 | |||
0fa9fbb47a | |||
5fc0adb353 | |||
0fd214dcc2 | |||
ecb4a2e1c6 | |||
e37f563557 | |||
ac713bda3a | |||
5911d96b6b | |||
6730bcdd2c | |||
56f14bd758 |
31
remote_backend/Cargo.lock
generated
31
remote_backend/Cargo.lock
generated
@@ -75,15 +75,15 @@ dependencies = [
|
||||
|
||||
[[package]]
|
||||
name = "actix-identity"
|
||||
version = "0.8.0"
|
||||
version = "0.9.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "23b8ddc6f6a8b19c4016aaa13519968da9969bc3bc1c1c883cdb0f25dd6c8cf7"
|
||||
checksum = "810f47733f956175bd5b2ae17ae5237fa92bd1b6a4a65f646a7240dbe9ff2728"
|
||||
dependencies = [
|
||||
"actix-service",
|
||||
"actix-session",
|
||||
"actix-session 0.11.0",
|
||||
"actix-utils",
|
||||
"actix-web",
|
||||
"derive_more 1.0.0",
|
||||
"derive_more 2.0.1",
|
||||
"futures-core",
|
||||
"serde",
|
||||
"tracing",
|
||||
@@ -179,6 +179,23 @@ dependencies = [
|
||||
"tracing",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "actix-session"
|
||||
version = "0.11.0"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "400c27fd4cdbe0082b7bbd29ac44a3070cbda1b2114138dc106ba39fe2f90dff"
|
||||
dependencies = [
|
||||
"actix-service",
|
||||
"actix-utils",
|
||||
"actix-web",
|
||||
"anyhow",
|
||||
"derive_more 2.0.1",
|
||||
"rand 0.9.0",
|
||||
"serde",
|
||||
"serde_json",
|
||||
"tracing",
|
||||
]
|
||||
|
||||
[[package]]
|
||||
name = "actix-utils"
|
||||
version = "3.0.1"
|
||||
@@ -2014,7 +2031,7 @@ dependencies = [
|
||||
"actix-cors",
|
||||
"actix-identity",
|
||||
"actix-remote-ip",
|
||||
"actix-session",
|
||||
"actix-session 0.10.1",
|
||||
"actix-web",
|
||||
"anyhow",
|
||||
"basic-jwt",
|
||||
@@ -2751,9 +2768,9 @@ checksum = "06abde3611657adf66d383f00b093d7faecc7fa57071cce2578660c9f1010821"
|
||||
|
||||
[[package]]
|
||||
name = "uuid"
|
||||
version = "1.17.0"
|
||||
version = "1.18.1"
|
||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||
checksum = "3cf4199d1e5d15ddd86a694e4d0dffa9c323ce759fea589f00fef9d81cc1931d"
|
||||
checksum = "2f87b8aa10b915a06587d0dec516c282ff295b475d94abf425d62b57710070a2"
|
||||
dependencies = [
|
||||
"getrandom 0.3.2",
|
||||
"js-sys",
|
||||
|
@@ -15,13 +15,13 @@ basic-jwt = "0.3.0"
|
||||
actix-web = "4.11.0"
|
||||
actix-remote-ip = "0.1.0"
|
||||
actix-session = { version = "0.10.1", features = ["cookie-session"] }
|
||||
actix-identity = "0.8.0"
|
||||
actix-identity = "0.9.0"
|
||||
actix-cors = "0.7.1"
|
||||
lazy_static = "1.5.0"
|
||||
anyhow = "1.0.99"
|
||||
reqwest = { version = "0.12.23", features = ["json"] }
|
||||
thiserror = "2.0.16"
|
||||
uuid = { version = "1.17.0", features = ["v4", "serde"] }
|
||||
uuid = { version = "1.18.1", features = ["v4", "serde"] }
|
||||
futures-util = "0.3.31"
|
||||
lazy-regex = "3.4.1"
|
||||
mime_guess = "2.0.5"
|
||||
|
2291
remote_frontend/package-lock.json
generated
2291
remote_frontend/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -10,25 +10,25 @@
|
||||
"preview": "vite preview"
|
||||
},
|
||||
"dependencies": {
|
||||
"@fluentui/react-components": "^9.69.0",
|
||||
"@fluentui/react-icons": "^2.0.309",
|
||||
"@fluentui/react-components": "^9.70.0",
|
||||
"@fluentui/react-icons": "^2.0.310",
|
||||
"filesize": "^11.0.2",
|
||||
"react": "^19.1.1",
|
||||
"react-dom": "^19.1.1"
|
||||
"react": "^18.3.1",
|
||||
"react-dom": "^18.3.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.35.0",
|
||||
"@types/react": "^19.1.12",
|
||||
"@types/react-dom": "^19.1.9",
|
||||
"@typescript-eslint/eslint-plugin": "^8.42.0",
|
||||
"@typescript-eslint/parser": "^8.41.0",
|
||||
"@vitejs/plugin-react": "^5.0.2",
|
||||
"eslint": "^9.33.0",
|
||||
"@types/react": "^18.3.24",
|
||||
"@types/react-dom": "^18.3.7",
|
||||
"@typescript-eslint/eslint-plugin": "^8.44.0",
|
||||
"@typescript-eslint/parser": "^8.43.0",
|
||||
"@vitejs/plugin-react": "^5.0.3",
|
||||
"eslint": "^9.35.0",
|
||||
"eslint-plugin-react-hooks": "^5.2.0",
|
||||
"eslint-plugin-react-refresh": "^0.4.20",
|
||||
"globals": "^16.3.0",
|
||||
"globals": "^16.4.0",
|
||||
"typescript": "^5.9.2",
|
||||
"typescript-eslint": "^8.39.1",
|
||||
"vite": "^7.1.4"
|
||||
"typescript-eslint": "^8.43.0",
|
||||
"vite": "^7.1.6"
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user