diff options
| author | mat <27899617+mat-1@users.noreply.github.com> | 2023-03-07 14:14:36 -0600 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-03-07 14:14:36 -0600 |
| commit | 719379a8a76ab0685f2bd14bebe2f0cd1e97f06b (patch) | |
| tree | ce5d6c62bc36fb1d1ec31083bc8e81a0109c12df /azalea/Cargo.toml | |
| parent | bf4ff517890cad3ff4e36b4b78959504192e5374 (diff) | |
| download | azalea-drasl-719379a8a76ab0685f2bd14bebe2f0cd1e97f06b.tar.xz | |
Bevy 0.10 (#79)
* replace 0.9.1 with 0.10.0
* start migrating to bevy .10
* well it compiles
* doesn't immediately panic
* remove unused imports
* fmt
* delete azalea-ecs
* make RelativeEntityUpdate an EntityCommand
* fix a doc test
* explain what FixedUpdate does
Diffstat (limited to 'azalea/Cargo.toml')
| -rw-r--r-- | azalea/Cargo.toml | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/azalea/Cargo.toml b/azalea/Cargo.toml index f64959ed..dd2bb46c 100644 --- a/azalea/Cargo.toml +++ b/azalea/Cargo.toml @@ -8,31 +8,31 @@ version = "0.6.0" [package.metadata.release] pre-release-replacements = [ - {file = "README.md", search = "`azalea = \"[a-z0-9\\.-]+\"`", replace = "`azalea = \"{{version}}\"`"}, + { file = "README.md", search = "`azalea = \"[a-z0-9\\.-]+\"`", replace = "`azalea = \"{{version}}\"`" }, ] [dependencies] anyhow = "^1.0.65" async-trait = "0.1.58" -azalea-block = {version = "0.6.0", path = "../azalea-block"} -azalea-chat = {version = "0.6.0", path = "../azalea-chat"} -azalea-client = {version = "0.6.0", path = "../azalea-client"} -azalea-core = {version = "0.6.0", path = "../azalea-core"} -azalea-ecs = {version = "0.6.0", path = "../azalea-ecs"} -azalea-physics = {version = "0.6.0", path = "../azalea-physics"} -azalea-protocol = {version = "0.6.0", path = "../azalea-protocol"} -azalea-registry = {version = "0.6.0", path = "../azalea-registry"} -azalea-world = {version = "0.6.0", path = "../azalea-world"} -bevy_tasks = "0.9.1" -derive_more = {version = "0.99.17", features = ["deref", "deref_mut"]} +azalea-block = { version = "0.6.0", path = "../azalea-block" } +azalea-chat = { version = "0.6.0", path = "../azalea-chat" } +azalea-client = { version = "0.6.0", path = "../azalea-client" } +azalea-core = { version = "0.6.0", path = "../azalea-core" } +azalea-physics = { version = "0.6.0", path = "../azalea-physics" } +azalea-protocol = { version = "0.6.0", path = "../azalea-protocol" } +azalea-registry = { version = "0.6.0", path = "../azalea-registry" } +azalea-world = { version = "0.6.0", path = "../azalea-world" } +bevy_app = "0.10.0" +bevy_ecs = "0.10.0" +bevy_tasks = "0.10.0" +derive_more = { version = "0.99.17", features = ["deref", "deref_mut"] } futures = "0.3.25" futures-lite = "1.12.0" log = "0.4.17" nohash-hasher = "0.2.0" num-traits = "0.2.15" -parking_lot = {version = "^0.12.1", features = ["deadlock_detection"]} +parking_lot = { version = "^0.12.1", features = ["deadlock_detection"] } priority-queue = "1.3.0" thiserror = "^1.0.37" tokio = "^1.24.2" uuid = "1.2.2" - |
