From 4e8ef3c0b4f5736c284fc30f9d3833e36b94b42e Mon Sep 17 00:00:00 2001 From: Avii Date: Thu, 17 Oct 2024 10:07:14 +0200 Subject: [PATCH] cargo sort --- Cargo.toml | 6 +++--- avam-client/Cargo.toml | 37 +++++++++++++++++-------------------- 2 files changed, 20 insertions(+), 23 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 4911f52..31757fd 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -63,8 +63,8 @@ dotenvy = { version = "0.15.7", optional = true } rand = { version = "0.8.5", optional = true } serde = { version = "1.0.210", features = ["std", "derive"], optional = false } thiserror = { version = "1.0.64", optional = false } -tokio = { version = "1.40.0", features = ["full"], optional = true } time = { version = "0.3.36", optional = true } +tokio = { version = "1.40.0", features = ["full"], optional = true } tracing = { version = "0.1.40", optional = false } tracing-subscriber = { version = "0.3.18", features = [ "env-filter", @@ -106,17 +106,17 @@ axum = { version = "0.7.7", optional = true } axum-macros = { version = "0.4.2", optional = true } axum_session = { version = "0.14.0", optional = true } axum_session_sqlx = { version = "0.3.0", optional = true } +http = "1" tower = { version = "0.4", optional = true, features = ["util"] } tower-http = { version = "0.6.1", features = ["trace", "fs"], optional = true } tower-layer = { version = "0.3.3", optional = true } -http = "1" validator = "0.18.1" # OAuth2 base64 = { version = "0.22.1", default-features = false } -sha256 = { version = "1.5.0", optional = true } # this fucker has a dependency on tokio?! jsonwebtoken = { version = "9.3.0", optional = true } serde_qs = "0.13.0" +sha256 = { version = "1.5.0", optional = true } # this fucker has a dependency on tokio?! [[workspace.metadata.leptos]] name = "avam" diff --git a/avam-client/Cargo.toml b/avam-client/Cargo.toml index 603b65f..e74a291 100644 --- a/avam-client/Cargo.toml +++ b/avam-client/Cargo.toml @@ -4,34 +4,31 @@ version = "0.1.0" edition = "2021" [dependencies] -tokio = { version = "1.40.0", features = ["full"] } - -tray-icon = "0.19" -image = "0.25" -winit = "0.30" -serde = { version = "1", features = ["derive"] } -config = "0.14.0" -toml = "0.8" - -directories = "5.0" - anyhow = { version = "1.0" } -thiserror = { version = "1.0" } -winreg = "0.52.0" +base64 = { version = "0.22.1", default-features = false } +clap = { version = "4.5.20", features = ["derive"] } +config = "0.14.0" +ctrlc = "3.4.5" +derive_more = { version = "1.0", features = ["full"] } +directories = "5.0" +image = "0.25" interprocess = { version = "2.2.1", features = ["tokio"] } open = "5.3.0" -clap = { version = "4.5.20", features = ["derive"] } -derive_more = { version = "1.0", features = ["full"] } -uuid = { version = "1.10.0", features = ["fast-rng", "serde", "v4"] } -serde_qs = "0.13.0" -ctrlc = "3.4.5" +rand = "0.8.5" reqwest = { version = "0.12.8", default-features = false, features = [ "rustls-tls", "json", ] } -rand = "0.8.5" +serde = { version = "1", features = ["derive"] } +serde_qs = "0.13.0" sha256 = "1.5.0" -base64 = { version = "0.22.1", default-features = false } +thiserror = { version = "1.0" } +tokio = { version = "1.40.0", features = ["full"] } +toml = "0.8" +tray-icon = "0.19" +uuid = { version = "1.10.0", features = ["fast-rng", "serde", "v4"] } +winit = "0.30" +winreg = "0.52.0" [build-dependencies] windres = "0.2"