35 lines
767 B
TOML
35 lines
767 B
TOML
[package]
|
|
name = "flare"
|
|
version.workspace = true
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
|
|
[dependencies]
|
|
anyhow.workspace = true
|
|
approx = "0.5"
|
|
bytemuck.workspace = true
|
|
eframe = { version = "0.31", features = ["wgpu"]}
|
|
egui = "0.31"
|
|
egui-wgpu = "0.31"
|
|
env_logger.workspace = true
|
|
epaint = "0.31"
|
|
flare-shader = { path = "../flare-shader" }
|
|
futures = "0.3"
|
|
futures-executor.workspace = true
|
|
glam.workspace = true
|
|
image = "0.25"
|
|
puffin = "0.19"
|
|
puffin_http = "0.16"
|
|
rand = { workspace = true, default-features = true }
|
|
rand_xoshiro.workspace = true
|
|
wgpu.workspace = true
|
|
log = "0.4.25"
|
|
profiling = { version = "1.0", features = ["profile-with-puffin"]}
|
|
|
|
[build-dependencies]
|
|
spirv-builder.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|