retrovnc/crates/retro_frontend/Cargo.toml
Lily Tsuru ad634bf1fa retro_frontend: actually implement variable storage
I'm not certain I'll keep it like this (it should probably be in `FrontendInterface`, so the driver code can serialize how it sees fit, rather than us), but it works to get it done.

There's also a lot of janky code I need to clean up before I'm really happy about it.
2024-08-04 06:59:31 -04:00

21 lines
381 B
TOML

[package]
name = "retro_frontend"
version = "0.1.0"
edition = "2021"
# Could be useful, and does build seperately, so...
# publish = false
[dependencies]
libc = "0.2.155"
libloading = "0.8.3"
libretro-sys = "0.1.1"
rgb565 = "0.1.3"
serde = { version = "1.0.204", features = ["derive"] }
thiserror = "1.0.61"
toml = "0.8.19"
tracing = "0.1.40"
[build-dependencies]
cc = "1.0.99"