summary refs log tree commit diff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorAshelyn Rose <git@ashen.earth>2025-04-19 18:39:22 -0600
committerAshelyn Rose <git@ashen.earth>2025-04-19 18:39:22 -0600
commit55dd47aff347ee882f375b5cf880a299e633f556 (patch)
treeb643473071db0ae1023d8b9856395ee1aeaaa507 /Cargo.toml
parenta35d336dc9a61fda931f4a9158205d590af87bd5 (diff)
Async rendering
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml8
1 files changed, 7 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index fa0dafb..7fea5f5 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,7 +1,13 @@
 [workspace]
-members = ["modules/proc", "modules/site_test"]
+members = ["modules/site_test"]
 
 [package]
 name = "morgana"
 version = "0.1.0"
 edition = "2021"
+
+[dependencies]
+futures = "0.3.31"
+
+[features]
+blocking = ["futures/executor"]