diff --git a/Cargo.lock b/Cargo.lock index 82994e4..4bf49fa 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -564,14 +564,34 @@ dependencies = [ "serde", ] +[[package]] +name = "i_float" +version = "0.10.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "c8ab8122fa1e2eec94a3a47ab66ead50495a6c858be31cfc87dbcfe412cea33f" +dependencies = [ + "serde", +] + [[package]] name = "i_overlay" version = "0.23.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "cdd39cee00660f3aa537a0c68d5e9671286e2981239e322567b8808c49cb3cb6" dependencies = [ - "i_float", - "i_shape", + "i_float 0.8.0", + "i_shape 0.14.0", +] + +[[package]] +name = "i_overlay" +version = "0.25.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "337b9eb13475acffd30cf823b8e2b869bbf694fef786386fcce3c060d63efd42" +dependencies = [ + "i_float 0.10.0", + "i_shape 0.16.0", + "i_tree", ] [[package]] @@ -580,19 +600,35 @@ version = "0.14.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "c20a699b04b521412b3ee72b5b6995116808eb61979cd317b4c4f8a83a3dcf92" dependencies = [ - "i_float", + "i_float 0.8.0", + "serde", +] + +[[package]] +name = "i_shape" +version = "0.16.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "47b3e64b6b8043e7a98679c7131bbc4a7b54b1cbf7772e371b26b32b1665fa0a" +dependencies = [ + "i_float 0.10.0", "serde", ] +[[package]] +name = "i_tree" +version = "0.4.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +checksum = "b9e82c454fd28dbea96973cecd400fc54948f445fa02b2f431dd3fe86ec60413" + [[package]] name = "i_triangle" version = "0.18.0" source = "registry+https://github.com/rust-lang/crates.io-index" checksum = "dfeb4122427f63a8919cce2f90851e519096b3a3c2556b09bdd1222977467fd7" dependencies = [ - "i_float", - "i_overlay", - "i_shape", + "i_float 0.8.0", + "i_overlay 0.23.0", + "i_shape 0.14.0", "serde", ] @@ -1112,9 +1148,9 @@ name = "rtte" version = "0.7.0" dependencies = [ "bevy_ecs", - "i_float", - "i_overlay", - "i_shape", + "i_float 0.8.0", + "i_overlay 0.25.0", + "i_shape 0.14.0", "i_triangle", "macroquad", "maths-rs", diff --git a/Cargo.toml b/Cargo.toml index 6feddc6..afe3b3d 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ version = "0.7.0" [dependencies] bevy_ecs = "0.13.2" i_float = "0.8.0" -i_overlay = "0.23.0" +i_overlay = "0.25.0" i_shape = "0.14.0" i_triangle = "0.18.0" macroquad = {version = "0.4.5", features = ["audio"]}