no iyes_loopless

This commit is contained in:
mat 2023-02-09 21:20:09 -06:00
parent ba3d8c35af
commit 7e43e6d24a
6 changed files with 18 additions and 40 deletions

17
Cargo.lock generated
View file

@ -180,7 +180,6 @@ dependencies = [
"env_logger 0.10.0",
"futures",
"futures-lite",
"iyes_loopless",
"log",
"nohash-hasher",
"num-traits",
@ -290,7 +289,6 @@ dependencies = [
"derive_more",
"env_logger 0.9.3",
"futures",
"iyes_loopless",
"log",
"nohash-hasher",
"once_cell",
@ -335,7 +333,6 @@ dependencies = [
"azalea-ecs-macros",
"bevy_app",
"bevy_ecs",
"iyes_loopless",
"tokio",
]
@ -382,7 +379,6 @@ dependencies = [
"azalea-ecs",
"azalea-registry",
"azalea-world",
"iyes_loopless",
"once_cell",
"parking_lot",
"uuid",
@ -465,7 +461,6 @@ dependencies = [
"azalea-registry",
"derive_more",
"enum-as-inner",
"iyes_loopless",
"log",
"nohash-hasher",
"once_cell",
@ -1523,18 +1518,6 @@ version = "1.0.5"
source = "registry+https://github.com/rust-lang/crates.io-index"
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]]
name = "js-sys"
version = "0.3.60"

View file

@ -11,21 +11,20 @@ version = "0.6.0"
[dependencies]
anyhow = "1.0.59"
async-trait = "0.1.58"
azalea-auth = {path = "../azalea-auth", version = "0.6.0" }
azalea-block = {path = "../azalea-block", version = "0.6.0" }
azalea-chat = {path = "../azalea-chat", version = "0.6.0" }
azalea-core = {path = "../azalea-core", version = "0.6.0" }
azalea-crypto = {path = "../azalea-crypto", version = "0.6.0" }
azalea-auth = {path = "../azalea-auth", version = "0.6.0"}
azalea-block = {path = "../azalea-block", version = "0.6.0"}
azalea-chat = {path = "../azalea-chat", version = "0.6.0"}
azalea-core = {path = "../azalea-core", version = "0.6.0"}
azalea-crypto = {path = "../azalea-crypto", version = "0.6.0"}
azalea-ecs = {path = "../azalea-ecs", version = "0.6.0"}
azalea-physics = {path = "../azalea-physics", version = "0.6.0" }
azalea-protocol = {path = "../azalea-protocol", version = "0.6.0" }
azalea-registry = {path = "../azalea-registry", version = "0.6.0" }
azalea-world = {path = "../azalea-world", version = "0.6.0" }
azalea-physics = {path = "../azalea-physics", version = "0.6.0"}
azalea-protocol = {path = "../azalea-protocol", version = "0.6.0"}
azalea-registry = {path = "../azalea-registry", version = "0.6.0"}
azalea-world = {path = "../azalea-world", version = "0.6.0"}
bevy_tasks = "0.9.1"
bevy_time = "0.9.1"
derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]}
futures = "0.3.25"
iyes_loopless = "0.9.1"
log = "0.4.17"
nohash-hasher = "0.2.0"
once_cell = "1.16.0"

View file

@ -11,5 +11,4 @@ version = "0.6.0"
azalea-ecs-macros = {path = "./azalea-ecs-macros", version = "^0.6.0"}
bevy_app = "0.9.1"
bevy_ecs = {version = "0.9.1", default-features = false}
iyes_loopless = "0.9.1"
tokio = {version = "1.25.0", features = ["time"]}

View file

@ -9,12 +9,11 @@ version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-block = {path = "../azalea-block", version = "^0.6.0" }
azalea-core = {path = "../azalea-core", version = "^0.6.0" }
azalea-block = {path = "../azalea-block", version = "^0.6.0"}
azalea-core = {path = "../azalea-core", version = "^0.6.0"}
azalea-ecs = {version = "0.6.0", path = "../azalea-ecs"}
azalea-registry = {path = "../azalea-registry", version = "^0.6.0" }
azalea-world = {path = "../azalea-world", version = "^0.6.0" }
iyes_loopless = "0.9.1"
azalea-registry = {path = "../azalea-registry", version = "^0.6.0"}
azalea-world = {path = "../azalea-world", version = "^0.6.0"}
once_cell = "1.16.0"
parking_lot = "^0.12.1"

View file

@ -9,16 +9,15 @@ version = "0.6.0"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
azalea-block = {path = "../azalea-block", default-features = false, version = "^0.6.0" }
azalea-buf = {path = "../azalea-buf", version = "^0.6.0" }
azalea-chat = {path = "../azalea-chat", version = "^0.6.0" }
azalea-block = {path = "../azalea-block", default-features = false, version = "^0.6.0"}
azalea-buf = {path = "../azalea-buf", version = "^0.6.0"}
azalea-chat = {path = "../azalea-chat", version = "^0.6.0"}
azalea-core = {path = "../azalea-core", version = "^0.6.0", features = ["bevy_ecs"]}
azalea-ecs = {version = "0.6.0", path = "../azalea-ecs"}
azalea-nbt = {path = "../azalea-nbt", version = "^0.6.0" }
azalea-registry = {path = "../azalea-registry", version = "^0.6.0" }
azalea-nbt = {path = "../azalea-nbt", version = "^0.6.0"}
azalea-registry = {path = "../azalea-registry", version = "^0.6.0"}
derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]}
enum-as-inner = "0.5.1"
iyes_loopless = "0.9.1"
log = "0.4.17"
nohash-hasher = "0.2.0"
once_cell = "1.16.0"

View file

@ -27,7 +27,6 @@ bevy_tasks = "0.9.1"
derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]}
futures = "0.3.25"
futures-lite = "1.12.0"
iyes_loopless = "0.9.1"
log = "0.4.17"
nohash-hasher = "0.2.0"
num-traits = "0.2.15"