diff --git a/Cargo.lock b/Cargo.lock index f083cf3..bc0fcec 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -565,9 +565,9 @@ dependencies = [ [[package]] name = "clap_complete" -version = "4.5.38" +version = "4.5.40" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "d9647a559c112175f17cf724dc72d3645680a883c58481332779192b0d8e7a01" +checksum = "ac2e663e3e3bed2d32d065a8404024dad306e699a04263ec59919529f803aee9" dependencies = [ "clap", ] @@ -662,7 +662,7 @@ dependencies = [ "crossterm", "strum", "strum_macros", - "unicode-width 0.2.0", + "unicode-width", ] [[package]] @@ -708,15 +708,15 @@ dependencies = [ [[package]] name = "console" -version = "0.15.8" +version = "0.15.10" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0e1f83fc076bd6dd27517eacdf25fef6c4dfe5f1d7448bafaaf3a26f13b5e4eb" +checksum = "ea3c6ecd8059b57859df5c69830340ed3c41d30e3da0c1cbed90a96ac853041b" dependencies = [ "encode_unicode", - "lazy_static", "libc", - "unicode-width 0.1.14", - "windows-sys 0.52.0", + "once_cell", + "unicode-width", + "windows-sys 0.59.0", ] [[package]] @@ -1060,9 +1060,9 @@ checksum = "60b1af1c220855b6ceac025d3f6ecdd2b7c4894bfe9cd9bda4fbb4bc7c0d4cf0" [[package]] name = "encode_unicode" -version = "0.3.6" +version = "1.0.0" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "a357d28ed41a50f9c765dbfe56cbc04a64e53e5fc58ba79fbc34c10ef3df831f" +checksum = "34aa73646ffb006b8f5147f3dc182bd4bcb190227ce861fc4a4844bf8e3cb2c0" [[package]] name = "encoding_rs" @@ -5103,12 +5103,6 @@ version = "1.12.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "f6ccf251212114b54433ec949fd6a7841275f9ada20dddd2f29e9ceea4501493" -[[package]] -name = "unicode-width" -version = "0.1.14" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "7dd6e30e90baa6f72411720665d41d89b9a3d039dc45b8faea1ddd07f617f6af" - [[package]] name = "unicode-width" version = "0.2.0" diff --git a/cli/Cargo.toml b/cli/Cargo.toml index 28886b7..4a68468 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -11,7 +11,7 @@ tokio = { version = "1.42.0", features = ["full"] } reqwest = { version = "0.12.9", features = ["json", "multipart"] } color-eyre = "0.6.3" clap = { version = "4.5.23", features = ["derive", "env"] } -console = "0.15.8" +console = "0.15.10" mime_guess = "2.0.5" chrono = { version = "0.4.39", features = ["serde"] } comfy-table = "7.1.3" diff --git a/frontend/bun.lockb b/frontend/bun.lockb index f6c18c3..d697bc0 100755 Binary files a/frontend/bun.lockb and b/frontend/bun.lockb differ diff --git a/frontend/package.json b/frontend/package.json index dfac7cb..6e46784 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -31,9 +31,9 @@ "@antfu/eslint-config": "^3.12.0", "@coloradix/tailwindcss": "^2.3.2", "@fontsource/geist-sans": "^5.1.0", - "@iconify-json/lucide": "^1.2.18", - "@iconify-json/noto": "^1.2.1", - "@iconify-json/radix-icons": "^1.2.1", + "@iconify-json/lucide": "^1.2.19", + "@iconify-json/noto": "^1.2.2", + "@iconify-json/radix-icons": "^1.2.2", "@prettier/plugin-xml": "^3.4.1", "@radix-ui/colors": "^3.0.0", "@tailwindcss/typography": "^0.5.15", @@ -47,16 +47,16 @@ "eslint": "^9.17.0", "eslint-plugin-format": "^0.1.3", "lucide-vue-next": "^0.468.0", - "npm-run-all2": "^7.0.1", + "npm-run-all2": "^7.0.2", "postcss": "^8.4.49", "sass": "^1.83.0", - "tailwindcss": "^3.4.16", + "tailwindcss": "^3.4.17", "tailwindcss-animate": "^1.0.7", "typescript": "~5.7.2", "unplugin-auto-import": "^0.19.0", "unplugin-fonts": "^1.3.1", - "unplugin-icons": "^0.21.0", - "unplugin-vue-components": "^0.27.5", + "unplugin-icons": "^0.22.0", + "unplugin-vue-components": "^0.28.0", "unplugin-vue-router": "^0.10.9", "vite": "^5.4.11", "vite-plugin-terminal": "^1.2.0", diff --git a/xtask/Cargo.toml b/xtask/Cargo.toml index 5df61b8..1eaef1e 100644 --- a/xtask/Cargo.toml +++ b/xtask/Cargo.toml @@ -8,7 +8,7 @@ publish = false clap = { version = "4.5.23", features = ["derive"] } xshell = "0.2.7" eyre = "0.6.12" -clap_complete = "4.5.38" +clap_complete = "4.5.40" flan-cli = { path = "../cli" } common = { path = "../common" } confique = { version = "0.3.0", features = ["toml"] }