mirror of
https://github.com/PrimeDecomp/retrotool.git
synced 2026-07-12 18:18:58 -07:00
61 lines
1.5 KiB
TOML
61 lines
1.5 KiB
TOML
[package]
|
|
name = "retrotool-gui"
|
|
description = "Tools for working with Retro game formats."
|
|
authors = ["Luke Street <luke@street.dev>"]
|
|
license = "MIT OR Apache-2.0"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
publish = false
|
|
repository = "https://github.com/PrimeDecomp/retrotool"
|
|
readme = "README.md"
|
|
|
|
[features]
|
|
default = []
|
|
dynamic = ["bevy/dynamic_linking"]
|
|
embed = ["bevy_embedded_assets"]
|
|
nightly = ["half/use-intrinsics"]
|
|
|
|
[dependencies]
|
|
anyhow = "1.0.69"
|
|
bevy_egui = "0.20.1"
|
|
bevy_embedded_assets = { version = "0.7.0", optional = true }
|
|
bevy_math = { version = "0.10.0", features = ["mint"] }
|
|
bevy_mod_raycast = { git = "https://github.com/encounter/bevy_mod_raycast", branch = "updates" }
|
|
bit-set = "0.5.3"
|
|
bytemuck = { version = "1.13.0", features = ["min_const_generics"] }
|
|
egui = { version = "0.21.0", features = ["mint"] }
|
|
egui_dock = { git = "https://github.com/encounter/egui_dock.git", branch = "updates" }
|
|
#egui_dock = { path = "../../egui_dock" }
|
|
half = { version = "2.4.1", features = ["bytemuck"] }
|
|
image = "0.24.5"
|
|
indexmap = "1.9.2"
|
|
log = "0.4.17"
|
|
mint = "0.5.9"
|
|
num-traits = "0.2.15"
|
|
retrolib = { path = "../lib" }
|
|
serde = "1.0.156"
|
|
strum = "0.24.1"
|
|
uuid = "1.3.0"
|
|
walkdir = "2.3.2"
|
|
wgpu = "0.15.1"
|
|
wgpu-types = "0.15.2"
|
|
zerocopy = "0.7.32"
|
|
|
|
[dependencies.bevy]
|
|
version = "0.10.0"
|
|
default-features = false
|
|
features = [
|
|
"android_shared_stdcxx",
|
|
"bevy_asset",
|
|
"bevy_winit",
|
|
"bevy_core_pipeline",
|
|
"bevy_pbr",
|
|
"bevy_render",
|
|
"x11",
|
|
# remove eventually
|
|
"ktx2",
|
|
"tonemapping_luts",
|
|
"zstd",
|
|
"png",
|
|
]
|