summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
Diffstat (limited to 'Cargo.toml')
-rw-r--r--Cargo.toml5
1 files changed, 4 insertions, 1 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 9a0015a..49cf229 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,5 +1,5 @@
[workspace]
-members = ["scripts", "sprites", "sys", "console"]
+members = ["scripts", "sprites", "sys", "console", "profiler"]
resolver = "2"
[package]
@@ -10,6 +10,8 @@ rust-version = "1.65"
publish = false
[dependencies]
+alligator_console = { path = "console" }
+alligator_profiler = { path = "profiler" }
alligator_scripts = { path = "scripts" }
alligator_sprites = { path = "sprites" }
alligator_sys = { path = "sys" }
@@ -17,6 +19,7 @@ alligator_sys = { path = "sys" }
clap = "4"
serde = "1"
serde_json = "1"
+pollster = "0.3"
sha3 = "0.10"
[profile.release]