Updated dependencies
This commit is contained in:
parent
9467fee93b
commit
4ca0661efa
10
Cargo.toml
10
Cargo.toml
@ -11,12 +11,12 @@ serde = { version = "1.0.197", features = ["derive"] }
|
|||||||
|
|
||||||
dioxus = { version = "0.5", features = ["fullstack", "router"] }
|
dioxus = { version = "0.5", features = ["fullstack", "router"] }
|
||||||
|
|
||||||
tokio = { version = "1.38.1", features = ["macros", "rt-multi-thread"], optional = true }
|
tokio = { version = "1.38", features = ["macros", "rt-multi-thread"], optional = true }
|
||||||
axum = { version = "0.7.5", optional = true }
|
axum = { version = "0.7", optional = true }
|
||||||
once_cell = { version = "1.19.0", optional = true }
|
once_cell = { version = "1.19", optional = true }
|
||||||
surrealdb = { version = "1.5.4", features = ["kv-speedb"], 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
|
# Debug
|
||||||
tracing = "0.1"
|
tracing = "0.1"
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
/*
|
/*
|
||||||
! tailwindcss v3.4.3 | MIT License | https://tailwindcss.com
|
! tailwindcss v3.4.10 | MIT License | https://tailwindcss.com
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/*
|
/*
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
env.BINDGEN_EXTRA_CLANG_ARGS = "-I ${pkgs.libclang.lib}/lib/clang/18/include";
|
env.BINDGEN_EXTRA_CLANG_ARGS = "-I ${pkgs.libclang.lib}/lib/clang/18/include";
|
||||||
|
|
||||||
# https://devenv.sh/packages/
|
# 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/
|
# https://devenv.sh/scripts/
|
||||||
scripts.hello.exec = "echo hello from $GREET";
|
scripts.hello.exec = "echo hello from $GREET";
|
||||||
|
@ -4,7 +4,7 @@ mod components;
|
|||||||
mod util;
|
mod util;
|
||||||
|
|
||||||
use dioxus::prelude::*;
|
use dioxus::prelude::*;
|
||||||
use tracing::{info, Level};
|
use tracing::Level;
|
||||||
|
|
||||||
// Use routes
|
// Use routes
|
||||||
use components::admin::members::migration::Migration;
|
use components::admin::members::migration::Migration;
|
||||||
|
Loading…
Reference in New Issue
Block a user