boilerplate

This commit is contained in:
Jonathan Jara 2025-04-25 12:07:21 -07:00
parent 4614470c28
commit 391be0afd5
3 changed files with 19 additions and 1 deletions

15
Cargo.toml Normal file
View File

@ -0,0 +1,15 @@
[package]
name = "rasselbock"
version = "0.1.0"
edition = "2024"
[dependencies]
bevy = "0.16.0"
# Enable a small amount of optimization in the dev profile.
[profile.dev]
opt-level = 1
# Enable a large amount of optimization in the dev profile for dependencies.
[profile.dev.package."*"]
opt-level = 3

View File

@ -58,7 +58,7 @@ APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives.
Copyright 2025 Alba
Copyright 2025 jojara
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.

3
src/main.rs Normal file
View File

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