fishbowl/Cargo.toml

22 lines
440 B
TOML
Raw Permalink 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
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"]}
2024-08-25 01:20:52 -05:00
wgpu = {version="22"}
2024-01-15 20:13:25 -06:00
bytemuck = {version="1.14", features=["derive"]}
futures-intrusive = "0.5"
2024-08-25 01:20:52 -05:00
rust-cgi = "0.7"
2024-01-15 20:13:25 -06:00
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"