Skip to content

Commit

Permalink
🐛 fix: bump cargo deps
Browse files Browse the repository at this point in the history
Signed-off-by: Pauline <git@ethanlibs.co>
  • Loading branch information
pauliesnug committed Sep 8, 2024
1 parent 5b66bc1 commit 661062c
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 25 deletions.
24 changes: 12 additions & 12 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

24 changes: 12 additions & 12 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ specta-typescript = { version = "=0.0.7" }
# rspc-specta2 is the specta v2 (rc) adapter for rspc.
rspc-tauri2 = { version = "=0.0.1" }
# core utilities for minecraft and mod management with pulseflow apis
interpulse = { version = "=1.1.0", features = [ "specta" ] }
interpulse = { version = "=1.1.1", features = [ "specta" ] }

# # ============= SECURITY ============= # #
thiserror = { version = "1.0" }
Expand All @@ -112,13 +112,13 @@ serde_json = { version = "1.0" }
serde_ini = { version = "0.2" }
regex = { version = "1.10" }
url = { version = "2.5.2" }
strum = { version = "0.23", features = [ "derive" ] }
strum = { version = "0.26", features = [ "derive" ] }
chrono = { version = "0.4", features = [ "serde" ] }
rand = { version = "0.8.5" }
byteorder = { version = "1.5.0" }
base64 = { version = "0.22" }
p256 = { version = "0.13.2", features = [ "ecdsa" ] }
uuid = { version = "1.8", features = [ "serde", "v4" ] }
uuid = { version = "1.10", features = [ "serde", "v4" ] }
toml = { version = "0.8" }
nom = { version = "7" }

Expand All @@ -136,24 +136,24 @@ reqwest = { version = "0.12", default-features = false, features = [
"gzip",
"brotli"
] }
async-tungstenite = { version = "0.27", features = [ "tokio-runtime", "tokio-rustls-webpki-roots" ] }
async-tungstenite = { version = "0.28", features = [ "tokio-runtime", "tokio-rustls-webpki-roots" ] }
webbrowser = { version = "1.0" }

# # ============= SYSTEM ============= # #
tokio = { version = "1.38", features = [ "full" ] }
tokio-stream = { version = "0.1.15", features = [ "fs" ] }
tokio = { version = "1.40", features = [ "full" ] }
tokio-stream = { version = "0.1.16", features = [ "fs" ] }
notify = { version = "6.1", default-features = false }
notify-debouncer-mini = { version = "0.4", default-features = false }
tempfile = { version = "3.10" }
dunce = { version = "1.0.4" }
zip = { version = "2.1.6" }
tempfile = { version = "3.12" }
dunce = { version = "1.0.5" }
zip = { version = "2.2.0" }
dirs = { version = "5.0" }
async_zip = { version = "0.0.17", features = [ "full" ] }
async-compression = { version = "0.4.12", features = [ "flate2", "tokio" ] }
flate2 = { version = "1.0" }
sha1_smol = { version = "1.0", features = [ "std" ] }
sha2 = { version = "0.10" }
bytes = { version = "1.6" }
bytes = { version = "1.7" }

# # ============= UTILITY ============= # #
once_cell = { version = "1.19" }
Expand All @@ -162,8 +162,8 @@ syn = { version = "2.0", features = [ "full" ] }
discord-rich-presence = { version = "0.2" }
winreg = { version = "0.52" }
paste = { version = "1.0" }
dashmap = { version = "6.0", features = [ "serde" ] }
lazy_static = { version = "1.4" }
dashmap = { version = "6.1", features = [ "serde" ] }
lazy_static = { version = "1.5" }
indicatif = { version = "0.17" }
futures = { version = "0.3" }
async-recursion = { version = "1.1" }
Expand Down
1 change: 0 additions & 1 deletion packages/scripts/utils/patch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ export async function tauriUpdateKey(env: CheckedEnvironment): Promise<string |

const privateKeyPath = resolve(join(env.__deps, 'tauri.key'));
const publicKeyPath = resolve(join(env.__deps, 'tauri.key.pub'));
const updatekeyPath = resolve(join(env.__deps, 'updatekey_lock'));

const readKeys = () => Promise.all([
fs.readFile(publicKeyPath, 'utf-8'),
Expand Down

0 comments on commit 661062c

Please sign in to comment.