mirror of
https://github.com/Dummi26/mers.git
synced 2025-03-10 22:37:46 +01:00

added a GUI library wrapping iced-rs, mainly to test the limits of the current library system. see gui.txt for an example on how to use the gui library. (note: set the MERS_LIB_DIR environment variable to the path of your local mers_libs/ folder (lib paths are relative to MERS_LIB_DIR if they're not specified as absolute))
11 lines
252 B
TOML
11 lines
252 B
TOML
[package]
|
|
name = "gui_v1"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[dependencies]
|
|
iced = { version = "0.8.0", features = ["smol"] }
|
|
mers = { path = "../../" }
|