blob: 98b5502f056286be3f42f5994ef2826c24fa1613 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
[package]
name = "game-newest"
version = "0.1.0"
edition = "2021"
[workspace]
members = ["engine*", "ecs*", "util-macros", "opengl-bindings"]
[workspace.dependencies]
engine = { path = "engine" }
engine-macros = { path = "engine-macros" }
ecs = { path = "ecs" }
ecs-macros = { path = "ecs-macros" }
util-macros= { path = "util-macros" }
opengl-bindings = { path = "opengl-bindings" }
[dependencies]
engine = { path = "./engine" }
tracing = { version = "0.1.39", features = ["max_level_debug"] }
[dependencies.tracing-subscriber]
version = "0.3.17"
default-features = false
features = ["std", "ansi", "fmt", "smallvec", "env-filter", "chrono"]
|