diff options
author | Ashelyn Rose <git@ashen.earth> | 2025-04-19 18:39:22 -0600 |
---|---|---|
committer | Ashelyn Rose <git@ashen.earth> | 2025-04-19 18:39:22 -0600 |
commit | 55dd47aff347ee882f375b5cf880a299e633f556 (patch) | |
tree | b643473071db0ae1023d8b9856395ee1aeaaa507 /Cargo.toml | |
parent | a35d336dc9a61fda931f4a9158205d590af87bd5 (diff) |
Async rendering
Diffstat (limited to 'Cargo.toml')
-rw-r--r-- | Cargo.toml | 8 |
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"] |