Compare commits

..

No commits in common. "11dc9771cc97de3ee731c15d46e0584a25bf6581" and "6d7da45b18fc9e597cf9bbbc02752fd1f968795e" have entirely different histories.

5 changed files with 1 additions and 3496 deletions

View File

@ -1,22 +0,0 @@
# Add the contents of this file to `config.toml` to enable "fast build" configuration. Please read the notes below.
# NOTE: For maximum performance, build using a nightly compiler
# If you are using rust stable, remove the "-Zshare-generics=y" below.
[target.x86_64-unknown-linux-gnu]
linker = "/usr/bin/clang"
rustflags = ["-Clink-arg=-fuse-ld=lld", "-Zshare-generics=y"]
# NOTE: you must manually install https://github.com/michaeleisel/zld on mac. you can easily do this with the "brew" package manager:
# `brew install michaeleisel/zld/zld`
[target.x86_64-apple-darwin]
rustflags = ["-C", "link-arg=-fuse-ld=/usr/local/bin/zld", "-Zshare-generics=y"]
[target.x86_64-pc-windows-msvc]
linker = "rust-lld.exe"
rustflags = ["-Zshare-generics=y"]
# Optional: Uncommenting the following improves compile times, but reduces the amount of debug info to 'line number tables only'
# In most cases the gains are negligible, but if you are on macos and have slow compile times you should see significant gains.
#[profile.dev]
#debug = 1

3467
Cargo.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,10 +1,8 @@
[package] [package]
name = "adventure-game" name = "adventure-game"
version = "0.1.0" version = "0.1.0"
authors = ["Daniel Lynn <daniel.eric.lynn@gmail.com>"]
edition = "2018" edition = "2018"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies] [dependencies]
bevy = { version = "0.5", features = ["dynamic"] }

View File

@ -1,2 +0,0 @@
[toolchain]
channel = "nightly"

View File

@ -1,5 +1,3 @@
use bevy::prelude::*;
fn main() { fn main() {
App::build().run(); println!("Hello, world!");
} }