-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cargo.toml
28 lines (24 loc) · 878 Bytes
/
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
[package]
name = "procedural"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
rand = "0.8.5"
pollster = { version = "0.3.0", optional = true }
image = { version = "0.24.3", optional = true}
te-renderer = { git = "https://github.com/Calcoph/Teengine.git", rev = "93177d6", optional = true}
te-player = { git = "https://github.com/Calcoph/Teengine.git", rev = "93177d6", optional = true}
te-gamepad = { git = "https://github.com/Calcoph/Teengine.git", rev = "93177d6", optional = true}
[features]
#default = ["view3d", "validate"] #? Uncomment when debugging view3d only. so rust-analyzer takes it into account
view3d = [
"dep:pollster",
"dep:image",
"dep:te-renderer",
"dep:te-player",
"dep:te-gamepad"
]
validate = []
[dev_dependencies]
colored = "2.0.0"