summaryrefslogtreecommitdiff
path: root/Cargo.toml
diff options
context:
space:
mode:
authorMica White <botahamec@outlook.com>2024-08-15 20:23:26 -0400
committerMica White <botahamec@outlook.com>2024-08-25 19:24:37 -0400
commit509e5ce1e17417a70b9bcce8bc6e33c05106811d (patch)
tree5b1fe60a65b5f42a90023ead03c32336033afa1f /Cargo.toml
parentdb9aa9f1bf49e8bede384b9ceb1e1fb82b522799 (diff)
Start profiling
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]