generated from emilk/eframe_template
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduced cargo workspaces and renamed crate.
- Loading branch information
Showing
18 changed files
with
201 additions
and
190 deletions.
There are no files selected for viewing
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,31 +1,6 @@ | ||
[package] | ||
name = "eframe_template" | ||
version = "0.1.0" | ||
authors = ["Emil Ernerfeldt <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.65" | ||
|
||
|
||
[dependencies] | ||
egui = "0.22.0" | ||
eframe = { version = "0.22.0", 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". | ||
"persistence", # Enable restoring app state when restarting the app. | ||
] } | ||
log = "0.4" | ||
|
||
# You only need serde if you want app persistence: | ||
serde = { version = "1", features = ["derive"] } | ||
|
||
# native: | ||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
env_logger = "0.10" | ||
|
||
# web: | ||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
wasm-bindgen-futures = "0.4" | ||
[workspace] | ||
|
||
members = ["pubsubman_gui"] | ||
|
||
|
||
[profile.release] | ||
|
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 was deleted.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
/dist |
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
[package] | ||
name = "pubsubman_gui" | ||
version = "0.1.0" | ||
authors = ["Duncan MacKinnon <[email protected]>"] | ||
edition = "2021" | ||
rust-version = "1.65" | ||
|
||
|
||
[dependencies] | ||
egui = "0.22.0" | ||
eframe = { version = "0.22.0", 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". | ||
"persistence", # Enable restoring app state when restarting the app. | ||
] } | ||
log = "0.4" | ||
|
||
# You only need serde if you want app persistence: | ||
serde = { version = "1", features = ["derive"] } | ||
|
||
# native: | ||
[target.'cfg(not(target_arch = "wasm32"))'.dependencies] | ||
env_logger = "0.10" | ||
|
||
# web: | ||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
wasm-bindgen-futures = "0.4" |
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes.
File renamed without changes
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.