blob: 506221909c754e3c73a0229c39f26d7abb601f0e (
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*", "util-macros", "opengl-bindings"]
[workspace.dependencies]
engine = { path = "engine" }
engine-macros = { path = "engine-macros" }
engine-ecs = { path = "engine-ecs" }
engine-ecs-macros = { path = "engine-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"]
|