summaryrefslogtreecommitdiff
path: root/alligator_render/Cargo.toml
blob: 4ef0ed87d57cf98ef2d00120fe5d19c091ed4f8d (plain)
[package]
name = "alligator_render"
version = "0.1.0"
edition = "2021"
rust-version = "1.65"

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
winit = "0.28"
log = "0.4"
wgpu = "0.15"
thiserror = "1"
pollster = "0.2"
bytemuck = { version = "1", features = ["derive"] }
cgmath = "0.18"
image = "0.24"
texture_packer = "0.25"
profiling = "1"
tracy-client = { version = "0.15", optional = true }
dhat = { version = "0.3", optional = true }

[lib]
crate-type = ["cdylib", "lib"]

[features]
dhat = ["dep:dhat"]
profile-with-tracy = ["tracy-client", "profiling/profile-with-tracy"]

[[example]]
name = "black"

[[example]]
name = "bmp"

[[example]]
name = "bunnymark"