7 Commits

Author SHA1 Message Date
f7677196a7 Update materialui to ^7.3.2
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
2025-09-21 00:45:40 +00:00
642366540e Merge pull request 'Update Rust crate anyhow to 1.0.100' (#307) from renovate/anyhow-1.x into master
All checks were successful
continuous-integration/drone/push Build is passing
2025-09-21 00:45:07 +00:00
482da63a3b Update Rust crate anyhow to 1.0.100
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-09-20 00:41:46 +00:00
cade9dc02b Merge pull request 'Update Rust crate serde to 1.0.225' (#306) from renovate/serde-1.x into master
All checks were successful
continuous-integration/drone/push Build is passing
2025-09-20 00:41:31 +00:00
9b87025b27 Update Rust crate serde to 1.0.225
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-09-19 00:39:44 +00:00
46d3f3580c Merge pull request 'Update dependency @fontsource/roboto to ^5.2.8' (#305) from renovate/fontsource-roboto-5.x into master
All checks were successful
continuous-integration/drone/push Build is passing
2025-09-19 00:39:36 +00:00
bda9f6a9c9 Update dependency @fontsource/roboto to ^5.2.8
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
2025-09-18 00:40:56 +00:00
4 changed files with 680 additions and 236 deletions

View File

@@ -474,9 +474,9 @@ dependencies = [
[[package]] [[package]]
name = "anyhow" name = "anyhow"
version = "1.0.99" version = "1.0.100"
source = "registry+https://github.com/rust-lang/crates.io-index" source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "b0674a1ddeecb70197781e945de4b3b8ffb61fa939a5597bcf48503737663100" checksum = "a23eb6b1614318a8071c9b2521f36b424b2c83db5eb3a0fead4a6c0809af6e61"
[[package]] [[package]]
name = "arbitrary" name = "arbitrary"

View File

@@ -9,7 +9,7 @@ env_logger = "0.11.8"
lazy_static = "1.5.0" lazy_static = "1.5.0"
dotenvy = "0.15.7" dotenvy = "0.15.7"
clap = { version = "4.5.47", features = ["derive", "env"] } clap = { version = "4.5.47", features = ["derive", "env"] }
anyhow = "1.0.99" anyhow = "1.0.100"
thiserror = "2.0.16" thiserror = "2.0.16"
openssl = { version = "0.10.73" } openssl = { version = "0.10.73" }
openssl-sys = "0.9.109" openssl-sys = "0.9.109"
@@ -18,7 +18,7 @@ foreign-types-shared = "0.1.1"
asn1 = "0.22.0" asn1 = "0.22.0"
actix-web = { version = "4.11.0", features = ["openssl"] } actix-web = { version = "4.11.0", features = ["openssl"] }
futures = "0.3.31" futures = "0.3.31"
serde = { version = "1.0.219", features = ["derive"] } serde = { version = "1.0.225", features = ["derive"] }
reqwest = { version = "0.12.23", features = ["json"] } reqwest = { version = "0.12.23", features = ["json"] }
serde_json = "1.0.143" serde_json = "1.0.143"
rand = "0.9.2" rand = "0.9.2"

File diff suppressed because it is too large Load Diff

View File

@@ -12,11 +12,11 @@
"dependencies": { "dependencies": {
"@emotion/react": "^11.14.0", "@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1", "@emotion/styled": "^11.14.1",
"@fontsource/roboto": "^5.2.7", "@fontsource/roboto": "^5.2.8",
"@mdi/js": "^7.4.47", "@mdi/js": "^7.4.47",
"@mdi/react": "^1.6.1", "@mdi/react": "^1.6.1",
"@mui/icons-material": "^7.0.2", "@mui/icons-material": "^7.3.2",
"@mui/material": "^7.0.2", "@mui/material": "^7.3.2",
"@mui/x-charts": "^7.29.1", "@mui/x-charts": "^7.29.1",
"@mui/x-date-pickers": "^7.29.4", "@mui/x-date-pickers": "^7.29.4",
"date-and-time": "^3.6.0", "date-and-time": "^3.6.0",
@@ -39,7 +39,7 @@
"eslint-plugin-react-refresh": "^0.4.20", "eslint-plugin-react-refresh": "^0.4.20",
"globals": "^16.3.0", "globals": "^16.3.0",
"typescript": "^5.8.3", "typescript": "^5.8.3",
"typescript-eslint": "^8.44.0", "typescript-eslint": "^8.24.1",
"vite": "^6.3.6" "vite": "^6.3.6"
} }
} }