trueLMAO/frontend/Cargo.toml
2022-06-15 17:53:25 +01:00

42 lines
1 KiB
TOML

[package]
name = "frontend"
default-run = "frontend_bin"
version = "0.1.0"
edition = "2021"
[[bin]]
name = "frontend_bin"
path = "src/main.rs"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
emu = { path = "../emu" }
instant = "0.1"
# puffin = "0.13.3"
# puffin_egui = "0.15.0"
# rfd = "0.8"
# wasm-bindgen-futures = "0.4"
# hqx = { git = "https://github.com/CryZe/wasmboy-rs", branch = "master" }
# egui = "0.18.0"
# eframe = { version = "0.18.0", features = ["persistence"] }
# egui = { path = "/home/cake/dev/egui/egui" }
# eframe = { path = "/home/cake/dev/egui/eframe" }
egui = { git = "https://github.com/emilk/egui", rev = "7eeb292a" }
eframe = { git = "https://github.com/emilk/egui", rev = "7eeb292a" }
# serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = "0.3"
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
tracing-wasm = "0.2"