Move all crates into a crates
directory (#1940)
This commit is contained in:
parent
5c63648c02
commit
041f2e64ba
260 changed files with 59 additions and 57 deletions
2
.github/workflows/rust.yml
vendored
2
.github/workflows/rust.yml
vendored
|
@ -209,4 +209,4 @@ jobs:
|
||||||
override: true
|
override: true
|
||||||
|
|
||||||
- run: cargo check --features wgpu --target aarch64-linux-android
|
- run: cargo check --features wgpu --target aarch64-linux-android
|
||||||
working-directory: eframe
|
working-directory: crates/eframe
|
||||||
|
|
20
Cargo.toml
20
Cargo.toml
|
@ -1,16 +1,16 @@
|
||||||
[workspace]
|
[workspace]
|
||||||
resolver = "2"
|
resolver = "2"
|
||||||
members = [
|
members = [
|
||||||
"egui_demo_app",
|
"crates/egui_demo_app",
|
||||||
"egui_demo_lib",
|
"crates/egui_demo_lib",
|
||||||
"egui_extras",
|
"crates/egui_extras",
|
||||||
"egui_glium",
|
"crates/egui_glium",
|
||||||
"egui_glow",
|
"crates/egui_glow",
|
||||||
"egui-wgpu",
|
"crates/egui-wgpu",
|
||||||
"egui-winit",
|
"crates/egui-winit",
|
||||||
"egui",
|
"crates/egui",
|
||||||
"emath",
|
"crates/emath",
|
||||||
"epaint",
|
"crates/epaint",
|
||||||
|
|
||||||
"examples/*",
|
"examples/*",
|
||||||
]
|
]
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue