-
Notifications
You must be signed in to change notification settings - Fork 6
/
Cargo.toml
96 lines (83 loc) · 2.11 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
90
91
92
93
94
95
96
[package]
name = "hotline-rs"
version = "0.3.2"
edition = "2021"
authors = ["polymonster <[email protected]>"]
description = "A high-performance, hot-reload graphics engine."
readme = "readme.md"
homepage = "https://github.com/polymonster/hotline"
repository = "https://github.com/polymonster/hotline"
keywords = ["graphics-engine", "compute", "video-decoding", "hot-reloading", "live-coding"]
categories = ["game-development", "graphics"]
license-file = "license"
exclude = ["config.user.jsn", "hotline-data"]
[dependencies]
maths-rs = "0.2.3"
bitflags = "1.3.2"
stb_image_rust = "2.27.2"
stb_image_write_rust = "1.16.1"
font-awesome = "0.2.0"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0.81"
hot-lib-reloader = "0.6.4"
libloading = "0.7.4"
bevy_ecs = "0.15.0"
ddsfile = "0.5.1"
[dependencies.imgui-sys]
version = "0.9.0"
features = ["docking"]
[target.'cfg(windows)'.dependencies.windows]
version = "0.58.0"
features = [
"implement",
"Win32_Foundation",
"Win32_Globalization",
"Win32_Graphics_Gdi",
"Win32_Graphics_Direct3D_Fxc",
"Win32_Graphics_Direct3D12",
"Win32_Graphics_Direct3D11",
"Win32_Graphics_Dxgi_Common",
"Win32_Media_MediaFoundation",
"Win32_Security",
"Win32_System_Com",
"Win32_System_LibraryLoader",
"Win32_System_Threading",
"Win32_System_WindowsProgramming",
"Win32_System_SystemServices",
"Win32_System_Console",
"Win32_UI_Controls",
"Win32_UI_HiDpi",
"Win32_UI_Input_KeyboardAndMouse",
"Win32_UI_Shell",
"Win32_UI_Shell_Common",
"Win32_UI_WindowsAndMessaging",
]
[target.'cfg(windows)'.dependencies.windows-core]
version = "0.58.0"
[lib]
crate-type = ["rlib", "dylib"]
[features]
build_data = []
client = []
default = ["build_data", "client"]
[[example]]
name = "bindless"
crate-type = ["bin"]
[[example]]
name = "imgui_demo"
crate-type = ["bin"]
[[example]]
name = "play_video"
crate-type = ["bin"]
[[example]]
name = "triangle"
crate-type = ["bin"]
[[bin]]
name = "client"
path = "client/main.rs"
required-features = ["client"]
[profile.dev]
opt-level = 0
[profile.release]
lto = "off"
incremental = true