2024-11-02 20:18:41 +00:00
|
|
|
[package]
|
2024-12-08 19:49:54 +00:00
|
|
|
name = "lemur"
|
2024-12-16 03:54:21 +00:00
|
|
|
description = "An emulator for the Virtual Boy."
|
2024-12-20 03:33:58 +00:00
|
|
|
repository = "https://git.virtual-boy.com/PVB/lemur"
|
2024-12-20 03:34:49 +00:00
|
|
|
publish = false
|
2024-12-20 03:33:58 +00:00
|
|
|
license = "MIT"
|
2024-12-21 19:18:59 +00:00
|
|
|
version = "0.1.2"
|
2024-11-02 20:18:41 +00:00
|
|
|
edition = "2021"
|
|
|
|
|
|
|
|
[dependencies]
|
|
|
|
anyhow = "1"
|
2024-12-12 04:44:14 +00:00
|
|
|
bitflags = { version = "2", features = ["serde"] }
|
2024-11-03 18:49:10 +00:00
|
|
|
bytemuck = { version = "1", features = ["derive"] }
|
2024-11-03 16:32:53 +00:00
|
|
|
clap = { version = "4", features = ["derive"] }
|
2024-11-23 22:36:24 +00:00
|
|
|
cpal = { git = "https://github.com/sidit77/cpal.git", rev = "66ed6be" }
|
2024-12-12 04:44:14 +00:00
|
|
|
directories = "5"
|
2024-12-15 04:08:44 +00:00
|
|
|
egui = { version = "0.29", features = ["serde"] }
|
2024-12-15 05:00:22 +00:00
|
|
|
egui_extras = { version = "0.29", features = ["image"] }
|
2024-12-10 04:18:42 +00:00
|
|
|
egui-toast = "0.15"
|
2024-11-26 05:38:03 +00:00
|
|
|
egui-winit = "0.29"
|
|
|
|
egui-wgpu = { version = "0.29", features = ["winit"] }
|
2024-12-12 04:44:14 +00:00
|
|
|
gilrs = { version = "0.11", features = ["serde-serialize"] }
|
2024-12-08 21:00:55 +00:00
|
|
|
image = { version = "0.25", default-features = false, features = ["png"] }
|
2024-11-04 14:59:58 +00:00
|
|
|
itertools = "0.13"
|
|
|
|
num-derive = "0.4"
|
|
|
|
num-traits = "0.2"
|
2024-12-08 19:39:40 +00:00
|
|
|
oneshot = "0.1"
|
2024-11-02 20:18:41 +00:00
|
|
|
pollster = "0.4"
|
2024-11-26 05:38:03 +00:00
|
|
|
rfd = "0.15"
|
2024-11-04 14:59:58 +00:00
|
|
|
rtrb = "0.3"
|
|
|
|
rubato = "0.16"
|
2024-12-12 04:44:14 +00:00
|
|
|
serde = { version = "1", features = ["derive"] }
|
|
|
|
serde_json = "1"
|
2024-11-10 20:53:14 +00:00
|
|
|
thread-priority = "1"
|
2024-11-26 05:38:03 +00:00
|
|
|
wgpu = "22.1"
|
2024-12-12 04:44:14 +00:00
|
|
|
winit = { version = "0.30", features = ["serde"] }
|
2024-11-02 20:18:41 +00:00
|
|
|
|
2024-11-18 01:57:43 +00:00
|
|
|
[target.'cfg(windows)'.dependencies]
|
|
|
|
windows = { version = "0.58", features = ["Win32_System_Threading"] }
|
|
|
|
|
2024-11-02 20:18:41 +00:00
|
|
|
[build-dependencies]
|
2024-11-03 16:32:53 +00:00
|
|
|
cc = "1"
|
2024-12-19 00:40:06 +00:00
|
|
|
winresource = "0.1"
|
2024-11-07 04:55:25 +00:00
|
|
|
|
|
|
|
[profile.release]
|
2024-12-16 03:54:21 +00:00
|
|
|
lto = true
|
|
|
|
|
|
|
|
[package.metadata.bundle]
|
|
|
|
name = "Lemur"
|
|
|
|
identifier = "com.virtual-boy.Lemur"
|
|
|
|
icon = ["assets/lemur-256x256.png"]
|
2024-12-20 03:34:49 +00:00
|
|
|
category = "games"
|