-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
56 lines (48 loc) · 1.46 KB
/
Cargo.toml
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
[package]
name = "hikari"
version = "0.1.0"
authors = ["atri <[email protected]>"]
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[workspace]
members = [
"crates/hikari_core",
"crates/hikari_systems",
"crates/hikari_render",
"crates/hikari_3d",
"crates/hikari_imgui",
"crates/hikari_pbr",
"crates/hikari_asset",
"crates/hikari_input",
"crates/hikari_dev",
"crates/hikari_path",
"crates/hikari_imgui",
"crates/hikari_utils",
"hikari_editor",
"hikari_cli"
]
[profile.dev]
opt-level = 3
[dependencies]
hikari_core = {path = "crates/hikari_core"}
hikari_math = {path = "crates/hikari_math"}
hikari_systems = {path = "crates/hikari_systems"}
hikari_render = {path = "crates/hikari_render"}
hikari_3d = {path = "crates/hikari_3d"}
hikari_asset = {path = "crates/hikari_asset"}
hikari_dev = {path = "crates/hikari_dev"}
hikari_input = {path = "crates/hikari_input"}
hikari_pbr = {path = "crates/hikari_pbr"}
hikari_utils = {path = "crates/hikari_utils"}
hikari_imgui = {path = "crates/hikari_imgui", optional = true}
[features]
default = []
serde = ["hikari_core/serde", "hikari_math/serde", "hikari_3d/serde"]
release_unsafe = ["hikari_systems/thread_unsafety"]
profiling_enabled = ["hikari_dev/profiling_enabled"]
aftermath = ["hikari_render/aftermath"]
imgui = ["hikari_imgui"]
editor = ["hikari_pbr/editor"]
[profile.dist]
inherits = "release"
strip = true