Update dependencies
This commit is contained in:
parent
4ba89dfb30
commit
804000f681
7 changed files with 1649 additions and 1311 deletions
1143
Cargo.lock
generated
1143
Cargo.lock
generated
File diff suppressed because it is too large
Load diff
24
Cargo.toml
24
Cargo.toml
|
|
@ -7,24 +7,24 @@ version = "0.0.0"
|
|||
edition = "2024"
|
||||
|
||||
[workspace.dependencies]
|
||||
anyhow = "1.0.97"
|
||||
axum = "0.8.1"
|
||||
chrono = "0.4.40"
|
||||
clap = { version = "4.5.33", features = ["derive", "deprecated"] }
|
||||
escpos = "0.15.0"
|
||||
anyhow = "1.0.99"
|
||||
axum = "0.8.4"
|
||||
chrono = "0.4.41"
|
||||
clap = { version = "4.5.47", features = ["derive", "deprecated"] }
|
||||
escpos = "0.16.0"
|
||||
image = "0.25.6"
|
||||
jiff = "0.2.5"
|
||||
jiff = "0.2.15"
|
||||
mime_guess = "2.0.5"
|
||||
palette = "0.7.6"
|
||||
rand = "0.9.0"
|
||||
reqwest = { version = "0.12.15", features = ["json"] }
|
||||
rust-embed = "8.6.0"
|
||||
rand = "0.9.2"
|
||||
reqwest = { version = "0.12.23", features = ["json"] }
|
||||
rust-embed = "8.7.2"
|
||||
serde = { version = "1.0.219", features = ["derive"] }
|
||||
serde_json = "1.0.140"
|
||||
serde_json = "1.0.143"
|
||||
showbits-assets.path = "./showbits-assets"
|
||||
showbits-typst.path = "./showbits-typst"
|
||||
sunrise = "1.2.1"
|
||||
tokio = "1.44.1"
|
||||
sunrise = "2.1.0"
|
||||
tokio = "1.47.1"
|
||||
typst = "0.13.1"
|
||||
typst-assets = { version = "0.13.1", features = ["fonts"] }
|
||||
typst-kit = { version = "0.13.1", features = ["vendor-openssl"] }
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
"fmt": "prettier . --write"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/node": "^22.13.13",
|
||||
"prettier": "^3.5.3"
|
||||
"@types/node": "^22.18.0",
|
||||
"prettier": "^3.6.2"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
1760
pnpm-lock.yaml
generated
1760
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
|
@ -1,10 +1,11 @@
|
|||
import eslint from "@eslint/js";
|
||||
import prettier from "eslint-config-prettier";
|
||||
import vue from "eslint-plugin-vue";
|
||||
import { defineConfig } from "eslint/config";
|
||||
import globals from "globals";
|
||||
import tseslint from "typescript-eslint";
|
||||
|
||||
export default tseslint.config(
|
||||
export default defineConfig(
|
||||
{ files: ["**/*.{js,mjs,cjs,ts,vue}"] },
|
||||
{ ignores: ["dist/"] },
|
||||
|
||||
|
|
|
|||
|
|
@ -11,22 +11,22 @@
|
|||
},
|
||||
"dependencies": {
|
||||
"@remixicon/vue": "^4.6.0",
|
||||
"vue": "^3.5.13"
|
||||
"vue": "^3.5.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@eslint/js": "^9.23.0",
|
||||
"@eslint/js": "^9.34.0",
|
||||
"@types/eslint-config-prettier": "^6.11.3",
|
||||
"@vitejs/plugin-vue": "^5.2.3",
|
||||
"@vitejs/plugin-vue": "^5.2.4",
|
||||
"@vue/tsconfig": "^0.7.0",
|
||||
"eslint": "^9.23.0",
|
||||
"eslint-config-prettier": "^10.1.1",
|
||||
"eslint": "^9.34.0",
|
||||
"eslint-config-prettier": "^10.1.8",
|
||||
"eslint-plugin-vue": "^9.33.0",
|
||||
"globals": "^16.0.0",
|
||||
"jiti": "^2.4.2",
|
||||
"typescript": "~5.8.2",
|
||||
"typescript-eslint": "^8.28.0",
|
||||
"vite": "^6.2.3",
|
||||
"vite-plugin-vue-devtools": "^7.7.2",
|
||||
"vue-tsc": "^2.2.8"
|
||||
"globals": "^16.3.0",
|
||||
"jiti": "^2.5.1",
|
||||
"typescript": "~5.8.3",
|
||||
"typescript-eslint": "^8.42.0",
|
||||
"vite": "^6.3.5",
|
||||
"vite-plugin-vue-devtools": "^7.7.7",
|
||||
"vue-tsc": "^2.2.12"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ edition = { workspace = true }
|
|||
[dependencies]
|
||||
anyhow = { workspace = true }
|
||||
axum = { workspace = true, features = ["multipart"] }
|
||||
chrono = {workspace = true}
|
||||
chrono = { workspace = true }
|
||||
clap = { workspace = true }
|
||||
escpos = { workspace = true }
|
||||
image = { workspace = true }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue