trueLMAO/frontend/Cargo.toml

37 lines
902 B
TOML
Raw Normal View History

2022-06-06 11:48:35 -04:00
[package]
name = "frontend"
2023-03-12 20:35:02 -04:00
default-run = "truelmao"
2022-06-06 11:48:35 -04:00
version = "0.1.0"
edition = "2021"
[[bin]]
2023-03-12 20:35:02 -04:00
name = "truelmao"
2022-06-06 11:48:35 -04:00
path = "src/main.rs"
[lib]
crate-type = ["cdylib", "rlib"]
[dependencies]
emu = { path = "../emu" }
2022-06-09 20:01:39 -04:00
# hqx = { git = "https://github.com/CryZe/wasmboy-rs", branch = "master" }
2022-06-07 20:46:14 -04:00
2023-03-10 17:17:40 -05:00
egui = "0.21.0"
eframe = { version = "0.21.0", features = ["persistence"] }
2022-06-09 20:01:39 -04:00
# serde = { version = "1", features = ["derive"] } # You only need this if you want app persistence
2022-06-06 11:48:35 -04:00
# native:
[target.'cfg(not(target_arch = "wasm32"))'.dependencies]
tracing-subscriber = "0.3"
2023-03-15 16:05:20 -04:00
rfd = "0.11"
2022-06-06 11:48:35 -04:00
# web:
[target.'cfg(target_arch = "wasm32")'.dependencies]
console_error_panic_hook = "0.1.6"
tracing-wasm = "0.2"
2023-02-18 07:11:37 -05:00
wasm-bindgen-futures = "0.4"
2023-03-15 16:05:20 -04:00
web-sys = { version = "0.3.61", features = ["Window", "Url", "File", "Blob", "HtmlAnchorElement", "BlobPropertyBag", "FilePropertyBag"] }
2023-03-12 20:35:02 -04:00
wasm-bindgen = "=0.2.84"
js-sys = "0.3"