1
0
Fork 0

Initial commit

This commit is contained in:
Alexey 2025-02-13 11:38:14 +03:00
commit 6f35fc9908
4 changed files with 5148 additions and 0 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/target

5122
Cargo.lock generated Normal file

File diff suppressed because it is too large Load diff

18
Cargo.toml Normal file
View file

@ -0,0 +1,18 @@
cargo-features = ["codegen-backend"]
[package]
name = "evolution-rs"
version = "0.1.0"
edition = "2021"
[dependencies]
bevy = { version = "0.15.2", features = ["dynamic_linking", "wayland"] }
log = { version = "*", features = ["max_level_debug", "release_max_level_warn"] }
[profile.dev]
opt-level = 1
codegen-backend = "cranelift"
[profile.dev.package."*"]
opt-level = 3
codegen-backend = "llvm"

7
src/main.rs Normal file
View file

@ -0,0 +1,7 @@
use bevy::prelude::*;
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.run();
}