-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCargo.toml
46 lines (41 loc) · 1.13 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
[package]
name = "black-ice"
version = "0.1.0"
edition = "2021"
authors = ["Detrixukoan58"]
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[lib]
name="black_ice_lib"
version ="0.1.0"
path="src/libs.rs"
crate-type = ["dylib"]
[[bin]]
name = "black_ice_executable"
path = "src/black_ice/bin/main.rs"
required-features = ["binary"]
[dependencies]
bytemuck = "1"
gl46 = {version = "*", optional = true}
ash = {version = "0.37.3+1.3.251", optional = true}
ash-window = {version ="0.12.0", optional = true}
shaderc = {version = "*"}
opengles = {version = "0.1.2", optional = true}
sdl2 = { version = "*"}
raw-window-handle = "*"
image = "*"
once_cell = "1.17.0"
glsl-include = "0.3"
glsl = "*"
futures = { version = "*", features = ["thread-pool"] }
bitmask-enum = { version = "*"}
colored = { version = "*"}
parking_lot = {version = "*"}
openal = {version = "*"}
libloading = "*"
fancy-regex = "*"
flate2 = {version = "*"}
[features]
vulkan = ["dep:ash", "dep:ash-window", "sdl2/raw-window-handle"]
opengl = ["dep:gl46"]
gles = ["dep:opengles"]
binary = []