Cargo.toml (1050B)
1 [package] 2 name = "two_d_world_bevy" 3 version = "0.1.0" 4 authors = ["MTRNord <mtrnord1@gmail.com>"] 5 edition = "2018" 6 7 # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html 8 9 [dependencies] 10 bevy_prototype_inline_assets = "0.1.1" 11 bevy_discovery = "0.1.0" 12 #kurinji = "1.0.5" 13 #bevy_ldtk = {version = "0.4.2", features = ["bevy-unstable"]} 14 noise = "0.7.0" 15 rand = "0.8.3" 16 17 [dependencies.bevy] 18 git = "https://github.com/bevyengine/bevy" 19 rev = "f520a341d5737600dbf89015b7729109d67cf041" 20 features = ["dynamic"] 21 22 #[dependencies.bevy_rapier2d] 23 #git = "https://github.com/MTRNord/bevy_rapier.git" 24 #branch = "tracking_changes_for_bevy_0.5" 25 #features = [ "simd-stable", "parallel" ] 26 27 [patch.crates-io] 28 bevy = { git = "https://github.com/bevyengine/bevy.git", rev = "f520a341d5737600dbf89015b7729109d67cf041"} 29 30 # Enable optimizations for dependencies (incl. Bevy), but not for our code: 31 [profile.dev.package."*"] 32 opt-level = 3 33 34 # Maybe also enable only a small amount of optimization for our code: 35 [profile.dev] 36 opt-level = 1