-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathCargo.toml
89 lines (80 loc) · 2.66 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
#[package]
#name = "mechaenetia"
#version = "0.1.0"
#authors = ["Gregorius Techneticies <[email protected]>", "OvermindDL1 <[email protected]>"]
#edition = "2021"
[workspace]
resolver = "2"
members = [
"xtask",
"mechaenetia_utils",
"mechaenetia_engine",
"mechaenetia_client",
"mechaenetia_client_wgpu",
"mechaenetia_server",
"mechaenetia_server_dedicated",
]
[workspace.package]
version = "0.1.0"
license = "GPL-3.0-or-later"
authors = ["Gregorius Techneticies <[email protected]>", "OvermindDL1 <[email protected]>"]
[workspace.dependencies]
# Workspace dependencies
# Keep mechaenetia versions compatible with the workspace.package.version
mechaenetia_client = { version = "0", path = "mechaenetia_client" }
mechaenetia_client_wgpu = { version = "0", path = "mechaenetia_client_wgpu" }
mechaenetia_engine = { version = "0", path = "mechaenetia_engine" }
mechaenetia_server = { version = "0", path = "mechaenetia_server" }
mechaenetia_server_dedicated = { version = "0", path = "mechaenetia_server_dedicated" }
mechaenetia_utils = { version = "0", path = "mechaenetia_utils" }
# Base system dependencies
anyhow = "1.0"
clap = { version = "4.5", features = ["derive", "env"] }
#lazy_static = "1.4.0"
#log4rs = {version = "1.0", features = ["toml_format"]}
#ron = "0.6.4"
#serde = {version = "1.0", features=["derive"]}
#serde-value = "0.7"
#serde_derive = "1.0"
#serde_json = "1.0"
#thiserror = "1.0"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter", "registry"] }
# Game Data dependencies
#indexmap = "1.6"
#rayon = "1.5"
#smol_str = "0.2"
# Game Engine dependencies
bevy = { version = "0.15.1", features = ["trace", "file_watcher"] }
#bevy-inspector-egui = { version = "0.4", optional = true }
#bevy_egui = { version = "0.4", optional = true }
#crossterm = { version = "0.19", optional = true}
#fluent = "0.15"
#fluent-syntax = "0.11"
#intl-memoizer = "0.5"
#tui = { version = "0.14", default-features = false, features = ['crossterm'], optional = true }
#unic-langid = "0.9"
winit = "0.30"
#[dependencies]
#anyhow.workspace = true
#clap.workspace = true
#bevy.workspace = true
#tracing.workspace = true
#mechaenetia_utils.workspace = true
#
#[features]
##default = ["client_tui", "client_wgpu", "server"]
##client_wgpu = ["bevy/bevy_audio", "bevy/bevy_gilrs", "bevy/bevy_wgpu", "bevy/bevy_winit", "bevy/render", "bevy/png", "bevy/hdr", "bevy/mp3", "bevy/x11", "bevy_egui", "bevy-inspector-egui"]
##client_tui = ["crossterm", "tui"]
##server = []
[profile.dev]
opt-level = 1
[profile.dev.package."*"]
opt-level = 3
#[lib]
#name = "mechaenetia"
#path = "src/lib.rs"
#
#[[bin]]
#name = "mechaenetia"
#path = "src/main.rs"