diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index 0e64c77..4dead78 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -2252,7 +2252,6 @@ dependencies = [ "once_cell", "os_info", "path-absolutize", - "rand 0.8.5", "regex", "reqwest", "sanitize-filename", @@ -2269,11 +2268,9 @@ dependencies = [ "thiserror 2.0.3", "tokio", "tokio-tar", - "toml 0.8.19", "tracing", "tracing-appender", "tracing-subscriber", - "urlencoding", "uuid", "void", ] @@ -5415,12 +5412,6 @@ dependencies = [ "serde", ] -[[package]] -name = "urlencoding" -version = "2.1.3" -source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "daf8dba3b7eb870caf1ddeed7bc9d2a049f3cfdfae7cb521b087cc33ae4c49da" - [[package]] name = "urlpattern" version = "0.3.0" diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 6693ecc..da310b2 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -28,7 +28,6 @@ thiserror = "2.0" # Generic void = "1" -rand = "0.8" directories = "5.0" once_cell = "1.16.0" @@ -45,7 +44,6 @@ sysinfo = "0.29" # Data regex = "1.7.0" -urlencoding = "2.1" uuid = { version = "1.2", features = ["serde", "v4"] } chrono = { version = "0.4", features = ["serde"] } @@ -65,7 +63,6 @@ reqwest = { version = "0.12", features = ["json"] } # Framework for serializing and deserializing data serde = { version = "1.0", features = ["derive"] } serde_json = "1.0" -toml = "0.8.19" # MS Authentication support azalea-auth = { git = "https://github.com/CCBlueX/azalea.git", branch = "custom_auth", package = "azalea-auth" }