move crates into 'crates' folder
This commit is contained in:
parent
f02d3c6b2f
commit
3ce9ab6fb3
|
@ -1,6 +1,6 @@
|
||||||
[submodule "lyra-scripting/elua"]
|
[submodule "lyra-scripting/elua"]
|
||||||
path = lyra-scripting/elua
|
path = crates/lyra-scripting/elua
|
||||||
url = ../elua.git # git@git.seanomik.net:SeanOMik/elua.git
|
url = ../elua.git # git@git.seanomik.net:SeanOMik/elua.git
|
||||||
[submodule "wgsl-preprocessor"]
|
[submodule "wgsl-preprocessor"]
|
||||||
path = wgsl-preprocessor
|
path = crates/wgsl-preprocessor
|
||||||
url = git@git.seanomik.net:SeanOMik/wgsl-preprocessor.git
|
url = git@git.seanomik.net:SeanOMik/wgsl-preprocessor.git
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# This file is automatically @generated by Cargo.
|
# This file is automatically @generated by Cargo.
|
||||||
# It is not intended for manual editing.
|
# It is not intended for manual editing.
|
||||||
version = 3
|
version = 4
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "ab_glyph"
|
name = "ab_glyph"
|
||||||
|
@ -854,6 +854,16 @@ dependencies = [
|
||||||
"crypto-common",
|
"crypto-common",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "dim_2d"
|
||||||
|
version = "0.1.0"
|
||||||
|
dependencies = [
|
||||||
|
"anyhow",
|
||||||
|
"async-std",
|
||||||
|
"lyra-engine",
|
||||||
|
"tracing",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "dispatch"
|
name = "dispatch"
|
||||||
version = "0.2.0"
|
version = "0.2.0"
|
||||||
|
|
19
Cargo.toml
19
Cargo.toml
|
@ -5,20 +5,15 @@ edition = "2021"
|
||||||
|
|
||||||
[workspace]
|
[workspace]
|
||||||
members = [
|
members = [
|
||||||
"lyra-resource",
|
"crates/*",
|
||||||
"lyra-ecs",
|
|
||||||
"lyra-reflect",
|
|
||||||
"lyra-scripting",
|
|
||||||
"lyra-game",
|
|
||||||
"lyra-math",
|
|
||||||
"lyra-scene",
|
|
||||||
|
|
||||||
"examples/testbed",
|
"examples/2d",
|
||||||
"examples/many-lights",
|
|
||||||
"examples/fixed-timestep-rotating-model",
|
"examples/fixed-timestep-rotating-model",
|
||||||
"examples/lua-scripting",
|
"examples/lua-scripting",
|
||||||
"examples/simple_scene",
|
"examples/many-lights",
|
||||||
"examples/shadows",
|
"examples/shadows",
|
||||||
|
"examples/simple_scene",
|
||||||
|
"examples/testbed",
|
||||||
]
|
]
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
|
@ -27,8 +22,8 @@ lua_scripting = ["scripting", "lyra-scripting/lua"]
|
||||||
tracy = ["lyra-game/tracy"]
|
tracy = ["lyra-game/tracy"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
lyra-game = { path = "lyra-game" }
|
lyra-game = { path = "crates/lyra-game" }
|
||||||
lyra-scripting = { path = "lyra-scripting", optional = true }
|
lyra-scripting = { path = "crates/lyra-scripting", optional = true }
|
||||||
|
|
||||||
#[profile.dev]
|
#[profile.dev]
|
||||||
#opt-level = 1
|
#opt-level = 1
|
||||||
|
|
Before Width: | Height: | Size: 545 B After Width: | Height: | Size: 545 B |
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue