mirror of
https://github.com/Dummi26/mers.git
synced 2025-03-10 14:13:52 +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))
14 lines
231 B
TOML
14 lines
231 B
TOML
[package]
|
|
name = "mers"
|
|
version = "0.1.0"
|
|
edition = "2021"
|
|
|
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
|
|
|
[lib]
|
|
name = "mers"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
regex = "1.7.2"
|