fishbowl/Cargo.toml

28 lines
501 B
TOML
Raw Normal View History

2024-01-12 12:34:30 -06:00
[package]
name = "fishbowl"
version = "0.1.0"
edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
2024-06-09 01:05:23 -05:00
# log = "0.4"
image = "0.25"
gif = "0.13"
2024-01-15 20:13:25 -06:00
futures = "0.3"
2024-06-09 01:05:23 -05:00
tokio = {version="1.37", features=["full"]}
wgpu = {version="0.19"}
2024-01-15 20:13:25 -06:00
bytemuck = {version="1.14", features=["derive"]}
futures-intrusive = "0.5"
[profile.dev]
opt-level=1
# codegen-units = 1
# lto = "fat"
2024-01-12 12:34:30 -06:00
[profile.release]
2024-01-15 20:13:25 -06:00
opt-level=3
2024-01-12 12:34:30 -06:00
codegen-units = 1
2024-01-15 20:13:25 -06:00
lto = "fat"