diff options
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml index 1086f32..e53686a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,11 +13,16 @@ axum = { version = "0.7", optional = true } console_error_panic_hook = { version = "0.1", optional = true} leptos_axum = { version = "0.7.0", optional = true } leptos_meta = { version = "0.7.0" } -tokio = { version = "1", features = ["rt-multi-thread", "signal"], optional = true } +tokio = { version = "1", features = ["rt-multi-thread", "signal", "fs"], optional = true } +tokio-stream = {version = "0.1.17", features = ["fs"]} wasm-bindgen = { version = "=0.2.100", optional = true } serde = { version = "^1.0.219", features = ["derive"] } stylance = "0.5.5" toml = { version = "0.8.20", features = ["parse"] } +uuid = { version = "1.16.0", features = ["v4"] } +chrono = "0.4.40" +fs2 = "0.4.3" +futures = "0.3.31" [features] default = ["ssr"] |