summaryrefslogtreecommitdiff
path: root/ecs/Cargo.toml
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2026-05-21 17:55:20 +0200
committerHampusM <hampus@hampusmat.com>2026-05-21 17:55:20 +0200
commit8022e8998290b067b8aa0cb9cba8ba410826bdab (patch)
tree7171e79ce530e03079046ee8fd12167160c45480 /ecs/Cargo.toml
parent412cee02c252f91bcf0b70a3f5cc5fca6d2b4c62 (diff)
chore: rename ecs* crates to engine-ecs*
Diffstat (limited to 'ecs/Cargo.toml')
-rw-r--r--ecs/Cargo.toml34
1 files changed, 0 insertions, 34 deletions
diff --git a/ecs/Cargo.toml b/ecs/Cargo.toml
deleted file mode 100644
index 0a94ff0..0000000
--- a/ecs/Cargo.toml
+++ /dev/null
@@ -1,34 +0,0 @@
-[package]
-name = "ecs"
-version = "0.1.0"
-edition = "2021"
-
-[features]
-vizoxide = ["dep:vizoxide"]
-
-[dependencies]
-seq-macro = "0.3.5"
-paste = "1.0.14"
-thiserror = "1.0.49"
-tracing = "0.1.39"
-hashbrown = "0.15.2"
-parking_lot = "0.12.3"
-anyhow = "1.0.102"
-backtrace = "0.3.76"
-ecs-macros = { workspace = true }
-util-macros = { workspace = true }
-vizoxide = { version = "1.0.5", optional = true }
-
-[dev-dependencies.criterion]
-version = "0.5.1"
-default-features = false
-features = ["cargo_bench_support"]
-
-[dev-dependencies.tracing-subscriber]
-version = "0.3.17"
-default-features = false
-features = ["std", "ansi", "fmt", "smallvec", "env-filter", "chrono"]
-
-[[bench]]
-name = "query"
-harness = false