summaryrefslogtreecommitdiff
path: root/Cargo.toml
blob: 2755fc841078209152cc5a77cb6429b9b62a8495 (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
25
[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_trace", "release_max_level_warn"] }
tracing-log = "0.2.0"

[dependencies.tracing-subscriber]
version = "0.3.17"
default-features = false
features = ["std", "ansi", "fmt", "smallvec", "env-filter", "chrono"]