chore: update dependencies

This commit is contained in:
zhom
2026-02-02 01:03:09 +04:00
parent 1f2c77c14f
commit 288685030a
6 changed files with 1881 additions and 1956 deletions
+3 -3
View File
@@ -18,8 +18,8 @@
"test:e2e": "jest --config ./test/jest-e2e.json"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.971.0",
"@aws-sdk/s3-request-presigner": "^3.971.0",
"@aws-sdk/client-s3": "^3.980.0",
"@aws-sdk/s3-request-presigner": "^3.980.0",
"@nestjs/common": "^11.1.12",
"@nestjs/config": "^4.0.2",
"@nestjs/core": "^11.1.12",
@@ -33,7 +33,7 @@
"@nestjs/testing": "^11.1.12",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.9",
"@types/node": "^25.2.0",
"@types/supertest": "^6.0.3",
"jest": "^30.2.0",
"source-map-support": "^0.5.21",
+11 -11
View File
@@ -56,28 +56,28 @@
"cmdk": "^1.1.1",
"color": "^5.0.3",
"flag-icons": "^7.5.0",
"i18next": "^25.7.4",
"lucide-react": "^0.562.0",
"motion": "^12.26.2",
"next": "^16.1.3",
"i18next": "^25.8.0",
"lucide-react": "^0.563.0",
"motion": "^12.29.2",
"next": "^16.1.6",
"next-themes": "^0.4.6",
"radix-ui": "^1.4.3",
"react": "^19.2.3",
"react-dom": "^19.2.3",
"react-i18next": "^16.5.3",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-i18next": "^16.5.4",
"react-icons": "^5.5.0",
"recharts": "3.6.0",
"recharts": "3.7.0",
"sonner": "^2.0.7",
"tailwind-merge": "^3.4.0",
"tauri-plugin-macos-permissions-api": "^2.3.0"
},
"devDependencies": {
"@biomejs/biome": "2.3.11",
"@biomejs/biome": "2.3.13",
"@tailwindcss/postcss": "^4.1.18",
"@tauri-apps/cli": "^2.9.6",
"@types/color": "^4.2.0",
"@types/node": "^25.0.9",
"@types/react": "^19.2.8",
"@types/node": "^25.2.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^5.1.2",
"husky": "^9.1.7",
+1617 -1622
View File
File diff suppressed because it is too large Load Diff
+239 -308
View File
File diff suppressed because it is too large Load Diff
+10 -10
View File
@@ -30,7 +30,7 @@ path = "src/bin/donut_daemon.rs"
[build-dependencies]
tauri-build = { version = "2", features = [] }
resvg = "0.44"
resvg = "0.46"
[dependencies]
serde_json = "1"
@@ -50,20 +50,20 @@ directories = "6"
reqwest = { version = "0.13", features = ["json", "stream", "socks"] }
tokio = { version = "1", features = ["full", "sync"] }
tokio-util = "0.7"
sysinfo = "0.37"
lazy_static = "1.4"
sysinfo = "0.38"
lazy_static = "1.5"
base64 = "0.22"
libc = "0.2"
async-trait = "0.1"
futures-util = "0.3"
zip = "7"
zip = { version = "7", default-features = false, features = ["deflate-flate2"] }
tar = "0"
bzip2 = "0"
flate2 = "1"
lzma-rs = "0"
msi-extract = "0"
uuid = { version = "1.19", features = ["v4", "serde"] }
uuid = { version = "1.20", features = ["v4", "serde"] }
url = "2.5"
blake3 = "1"
globset = "0.4"
@@ -96,10 +96,10 @@ thiserror = "2.0"
regex-lite = "0.1"
tempfile = "3"
maxminddb = "0.27"
quick-xml = { version = "0.38", features = ["serialize"] }
quick-xml = { version = "0.39", features = ["serialize"] }
# VPN support
boringtun = "0.6"
boringtun = "0.7"
# Daemon dependencies (tray icon)
tray-icon = "0.21"
@@ -115,12 +115,12 @@ sys-locale = "0.3"
tauri-plugin-single-instance = { version = "2", features = ["deep-link"] }
[target.'cfg(unix)'.dependencies]
nix = { version = "0.30", features = ["signal", "process"] }
nix = { version = "0.31", features = ["signal", "process"] }
[target.'cfg(target_os = "macos")'.dependencies]
core-foundation = "0.10"
objc2 = "0.6.1"
objc2-app-kit = { version = "0.3.1", features = ["NSWindow", "NSApplication", "NSRunningApplication"] }
objc2 = "0.6.3"
objc2-app-kit = { version = "0.3.2", features = ["NSWindow", "NSApplication", "NSRunningApplication"] }
[target.'cfg(target_os = "windows")'.dependencies]
winreg = "0.55"
+1 -2
View File
@@ -84,8 +84,7 @@ impl WireGuardTunnel {
self.config.persistent_keepalive,
0, // index
None,
)
.map_err(|e| VpnError::Tunnel(format!("Failed to create tunnel: {e}")))?;
);
self.tunnel = Some(Arc::new(Mutex::new(Box::new(tunn))));
Ok(())