summary refs log tree commit diff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorAshelyn Rose <git@ashen.earth>2025-04-10 00:45:21 -0600
committerAshelyn Rose <git@ashen.earth>2025-04-10 00:45:21 -0600
commite66c23f2f4fd3783364aaa15f07f8a51aaf51e3f (patch)
tree884e456dc22747e672d2b89b0b17463e1d4c8566 /Cargo.toml
parent14ad60a6d77f40fdd0b23e60e11ace8c52449c01 (diff)
WIP: Reading pages and namespaces
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml7
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"]