mirror of
https://github.com/mat-1/azalea.git
synced 2025-08-02 14:26:04 +00:00
no iyes_loopless
This commit is contained in:
parent
ba3d8c35af
commit
7e43e6d24a
6 changed files with 18 additions and 40 deletions
17
Cargo.lock
generated
17
Cargo.lock
generated
|
@ -180,7 +180,6 @@ dependencies = [
|
||||||
"env_logger 0.10.0",
|
"env_logger 0.10.0",
|
||||||
"futures",
|
"futures",
|
||||||
"futures-lite",
|
"futures-lite",
|
||||||
"iyes_loopless",
|
|
||||||
"log",
|
"log",
|
||||||
"nohash-hasher",
|
"nohash-hasher",
|
||||||
"num-traits",
|
"num-traits",
|
||||||
|
@ -290,7 +289,6 @@ dependencies = [
|
||||||
"derive_more",
|
"derive_more",
|
||||||
"env_logger 0.9.3",
|
"env_logger 0.9.3",
|
||||||
"futures",
|
"futures",
|
||||||
"iyes_loopless",
|
|
||||||
"log",
|
"log",
|
||||||
"nohash-hasher",
|
"nohash-hasher",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
|
@ -335,7 +333,6 @@ dependencies = [
|
||||||
"azalea-ecs-macros",
|
"azalea-ecs-macros",
|
||||||
"bevy_app",
|
"bevy_app",
|
||||||
"bevy_ecs",
|
"bevy_ecs",
|
||||||
"iyes_loopless",
|
|
||||||
"tokio",
|
"tokio",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
@ -382,7 +379,6 @@ dependencies = [
|
||||||
"azalea-ecs",
|
"azalea-ecs",
|
||||||
"azalea-registry",
|
"azalea-registry",
|
||||||
"azalea-world",
|
"azalea-world",
|
||||||
"iyes_loopless",
|
|
||||||
"once_cell",
|
"once_cell",
|
||||||
"parking_lot",
|
"parking_lot",
|
||||||
"uuid",
|
"uuid",
|
||||||
|
@ -465,7 +461,6 @@ dependencies = [
|
||||||
"azalea-registry",
|
"azalea-registry",
|
||||||
"derive_more",
|
"derive_more",
|
||||||
"enum-as-inner",
|
"enum-as-inner",
|
||||||
"iyes_loopless",
|
|
||||||
"log",
|
"log",
|
||||||
"nohash-hasher",
|
"nohash-hasher",
|
||||||
"once_cell",
|
"once_cell",
|
||||||
|
@ -1523,18 +1518,6 @@ version = "1.0.5"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
|
checksum = "fad582f4b9e86b6caa621cabeb0963332d92eea04729ab12892c2533951e6440"
|
||||||
|
|
||||||
[[package]]
|
|
||||||
name = "iyes_loopless"
|
|
||||||
version = "0.9.1"
|
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
|
||||||
checksum = "c47fd2cbdb1d7f295c25e6bfccfd78a84b6eef3055bc9f01b34ae861721b01ee"
|
|
||||||
dependencies = [
|
|
||||||
"bevy_app",
|
|
||||||
"bevy_ecs",
|
|
||||||
"bevy_time",
|
|
||||||
"bevy_utils",
|
|
||||||
]
|
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "js-sys"
|
name = "js-sys"
|
||||||
version = "0.3.60"
|
version = "0.3.60"
|
||||||
|
|
|
@ -25,7 +25,6 @@ bevy_tasks = "0.9.1"
|
||||||
bevy_time = "0.9.1"
|
bevy_time = "0.9.1"
|
||||||
derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]}
|
derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]}
|
||||||
futures = "0.3.25"
|
futures = "0.3.25"
|
||||||
iyes_loopless = "0.9.1"
|
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
nohash-hasher = "0.2.0"
|
nohash-hasher = "0.2.0"
|
||||||
once_cell = "1.16.0"
|
once_cell = "1.16.0"
|
||||||
|
|
|
@ -11,5 +11,4 @@ version = "0.6.0"
|
||||||
azalea-ecs-macros = {path = "./azalea-ecs-macros", version = "^0.6.0"}
|
azalea-ecs-macros = {path = "./azalea-ecs-macros", version = "^0.6.0"}
|
||||||
bevy_app = "0.9.1"
|
bevy_app = "0.9.1"
|
||||||
bevy_ecs = {version = "0.9.1", default-features = false}
|
bevy_ecs = {version = "0.9.1", default-features = false}
|
||||||
iyes_loopless = "0.9.1"
|
|
||||||
tokio = {version = "1.25.0", features = ["time"]}
|
tokio = {version = "1.25.0", features = ["time"]}
|
||||||
|
|
|
@ -14,7 +14,6 @@ azalea-core = {path = "../azalea-core", version = "^0.6.0" }
|
||||||
azalea-ecs = {version = "0.6.0", path = "../azalea-ecs"}
|
azalea-ecs = {version = "0.6.0", path = "../azalea-ecs"}
|
||||||
azalea-registry = {path = "../azalea-registry", version = "^0.6.0"}
|
azalea-registry = {path = "../azalea-registry", version = "^0.6.0"}
|
||||||
azalea-world = {path = "../azalea-world", version = "^0.6.0"}
|
azalea-world = {path = "../azalea-world", version = "^0.6.0"}
|
||||||
iyes_loopless = "0.9.1"
|
|
||||||
once_cell = "1.16.0"
|
once_cell = "1.16.0"
|
||||||
parking_lot = "^0.12.1"
|
parking_lot = "^0.12.1"
|
||||||
|
|
||||||
|
|
|
@ -18,7 +18,6 @@ azalea-nbt = {path = "../azalea-nbt", version = "^0.6.0" }
|
||||||
azalea-registry = {path = "../azalea-registry", version = "^0.6.0"}
|
azalea-registry = {path = "../azalea-registry", version = "^0.6.0"}
|
||||||
derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]}
|
derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]}
|
||||||
enum-as-inner = "0.5.1"
|
enum-as-inner = "0.5.1"
|
||||||
iyes_loopless = "0.9.1"
|
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
nohash-hasher = "0.2.0"
|
nohash-hasher = "0.2.0"
|
||||||
once_cell = "1.16.0"
|
once_cell = "1.16.0"
|
||||||
|
|
|
@ -27,7 +27,6 @@ bevy_tasks = "0.9.1"
|
||||||
derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]}
|
derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]}
|
||||||
futures = "0.3.25"
|
futures = "0.3.25"
|
||||||
futures-lite = "1.12.0"
|
futures-lite = "1.12.0"
|
||||||
iyes_loopless = "0.9.1"
|
|
||||||
log = "0.4.17"
|
log = "0.4.17"
|
||||||
nohash-hasher = "0.2.0"
|
nohash-hasher = "0.2.0"
|
||||||
num-traits = "0.2.15"
|
num-traits = "0.2.15"
|
||||||
|
|
Loading…
Add table
Reference in a new issue