Browse Source

initial commit

john melesky 2 years ago
parent
commit
82e2b6cf01
3 changed files with 24 additions and 0 deletions
  1. 5 0
      .gitignore
  2. 16 0
      Cargo.toml
  3. 3 0
      src/main.rs

+ 5 - 0
.gitignore

@@ -45,3 +45,8 @@ tramp
 # cask packages
 .cask/
 
+
+
+# Added by cargo
+
+/target

+ 16 - 0
Cargo.toml

@@ -0,0 +1,16 @@
+[package]
+name = "block_effects"
+version = "0.1.0"
+edition = "2021"
+license = "MIT OR Apache-2.0"
+
+# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
+
+[dependencies]
+bevy = { version = "0.10.0", features = ["dynamic_linking"] }
+
+[profile.dev]
+opt-level = 1
+
+[profile.dev.package."*"]
+opt-level = 3

+ 3 - 0
src/main.rs

@@ -0,0 +1,3 @@
+fn main() {
+    println!("Hello, world!");
+}