summaryrefslogtreecommitdiff
path: root/engine-ecs/Cargo.toml
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-07-06 21:57:52 +0200
committerHampusM <hampus@hampusmat.com>2026-07-06 22:01:40 +0200
commit5a07a635486c3a072e6578fbb725da1bab9a774c (patch)
tree2f8ef259c792e85be2b5e88e769baec73e7b7c58 /engine-ecs/Cargo.toml
parent19276ab6030250bc1c2e034bd8ccf72db61fa21c (diff)
feat(engine): make context addable to errors & results
Diffstat (limited to 'engine-ecs/Cargo.toml')
-rw-r--r--engine-ecs/Cargo.toml8
1 files changed, 7 insertions, 1 deletions
diff --git a/engine-ecs/Cargo.toml b/engine-ecs/Cargo.toml
index 0c9da60..001cf54 100644
--- a/engine-ecs/Cargo.toml
+++ b/engine-ecs/Cargo.toml
@@ -14,12 +14,18 @@ tracing = "0.1.39"
hashbrown = "0.15.2"
parking_lot = "0.12.3"
anyhow = "1.0.102"
-backtrace = "0.3.76"
engine-ecs-macros = { workspace = true }
engine-reflection = { workspace = true }
util-macros = { workspace = true }
vizoxide = { version = "1.0.5", optional = true }
+[target.'cfg(windows)'.dependencies.windows-sys]
+version = "0.61.2"
+features = ["Win32_System_Threading"]
+
+[target.'cfg(target_os = "linux")'.dependencies.libc]
+version = "0.2.186"
+
[dev-dependencies.criterion]
version = "0.5.1"
default-features = false