generated from emilk/eframe_template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
prepare some GUI and structs/enums for scheme submission, lots missing
- Loading branch information
1 parent
6e0299b
commit f9a6c1f
Showing
14 changed files
with
545 additions
and
100 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
/target | ||
/dist | ||
|
||
.idea |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
[package] | ||
name = "eframe_template" | ||
name = "scheme_submission" | ||
version = "0.1.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
authors = ["Reto Trappitsch <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.72" | ||
|
||
|
||
[dependencies] | ||
egui = "0.27.0" | ||
eframe = { version = "0.27.0", default-features = false, features = [ | ||
egui = "0.27.2" | ||
eframe = { version = "0.27.2", default-features = false, features = [ | ||
"accesskit", # Make egui comptaible with screen readers. NOTE: adds a lot of dependencies. | ||
"default_fonts", # Embed the default egui fonts. | ||
"glow", # Use the glow rendering backend. Alternative: "wgpu". | ||
|
@@ -18,6 +18,8 @@ log = "0.4" | |
|
||
# You only need serde if you want app persistence: | ||
serde = { version = "1", features = ["derive"] } | ||
strum = "0.26.2" | ||
strum_macros = "0.26.2" | ||
|
||
# native: | ||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.