-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCargo.toml
More file actions
23 lines (21 loc) · 769 Bytes
/
Cargo.toml
File metadata and controls
23 lines (21 loc) · 769 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[package]
name = "trinity-rs"
version = "0.1.0"
edition = "2021"
[dependencies]
flatbuffers = "23.5.26"
bytemuck = "1.14.0"
byteorder = "1.4.3"
ultraviolet = { version = "0.9.2", features = ["bytemuck"] }
vulkano = { git = "https://github.com/vulkano-rs/vulkano.git" }
vulkano-shaders = { git = "https://github.com/vulkano-rs/vulkano.git" }
vulkano-util = { git = "https://github.com/vulkano-rs/vulkano.git" }
vulkano-win = { git = "https://github.com/vulkano-rs/vulkano.git" }
winit = "0.28.3"
png = "0.17.10"
itertools = "0.11.0"
[profile.release]
lto = true # Enable link-time optimization
codegen-units = 1 # Reduce number of codegen units to increase optimizations
panic = 'abort' # Abort on panic
strip = true # Strip symbols from binary*