From 4ca0661efad056a8415942599c8a50503c15fb0a Mon Sep 17 00:00:00 2001 From: xeovalyte Date: Sat, 7 Sep 2024 20:02:24 +0200 Subject: [PATCH] Updated dependencies --- Cargo.toml | 10 +++++----- assets/tailwind.css | 2 +- devenv.nix | 2 +- src/main.rs | 2 +- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index 3b7c453..e23d1d3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -11,12 +11,12 @@ serde = { version = "1.0.197", features = ["derive"] } dioxus = { version = "0.5", features = ["fullstack", "router"] } -tokio = { version = "1.38.1", features = ["macros", "rt-multi-thread"], optional = true } -axum = { version = "0.7.5", optional = true } -once_cell = { version = "1.19.0", optional = true } -surrealdb = { version = "1.5.4", features = ["kv-speedb"], optional = true } +tokio = { version = "1.38", features = ["macros", "rt-multi-thread"], optional = true } +axum = { version = "0.7", optional = true } +once_cell = { version = "1.19", optional = true } +surrealdb = { version = "1.5", features = ["kv-speedb"], optional = true } -csv = { version = "1.3.0", optional = true } +csv = { version = "1.3", optional = true } # Debug tracing = "0.1" diff --git a/assets/tailwind.css b/assets/tailwind.css index 4ec72d7..eef4d1e 100644 --- a/assets/tailwind.css +++ b/assets/tailwind.css @@ -1,5 +1,5 @@ /* -! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com +! tailwindcss v3.4.10 | MIT License | https://tailwindcss.com */ /* diff --git a/devenv.nix b/devenv.nix index a944116..cddfef1 100644 --- a/devenv.nix +++ b/devenv.nix @@ -7,7 +7,7 @@ env.BINDGEN_EXTRA_CLANG_ARGS = "-I ${pkgs.libclang.lib}/lib/clang/18/include"; # https://devenv.sh/packages/ - packages = [ pkgs.openssl pkgs.git pkgs.dioxus-cli pkgs.tailwindcss pkgs.watchexec pkgs.libclang pkgs.clang ]; + packages = [ pkgs.openssl pkgs.git pkgs.tailwindcss pkgs.watchexec pkgs.libclang pkgs.clang ]; # https://devenv.sh/scripts/ scripts.hello.exec = "echo hello from $GREET"; diff --git a/src/main.rs b/src/main.rs index a5f1922..fb3b108 100644 --- a/src/main.rs +++ b/src/main.rs @@ -4,7 +4,7 @@ mod components; mod util; use dioxus::prelude::*; -use tracing::{info, Level}; +use tracing::Level; // Use routes use components::admin::members::migration::Migration;