Compare commits
No commits in common. "11dc9771cc97de3ee731c15d46e0584a25bf6581" and "6d7da45b18fc9e597cf9bbbc02752fd1f968795e" have entirely different histories.
11dc9771cc
...
6d7da45b18
@ -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
3467
Cargo.lock
generated
File diff suppressed because it is too large
Load Diff
@ -1,10 +1,8 @@
|
||||
[package]
|
||||
name = "adventure-game"
|
||||
version = "0.1.0"
|
||||
authors = ["Daniel Lynn <daniel.eric.lynn@gmail.com>"]
|
||||
edition = "2018"
|
||||
|
||||
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||
|
||||
[dependencies]
|
||||
bevy = { version = "0.5", features = ["dynamic"] }
|
||||
|
@ -1,2 +0,0 @@
|
||||
[toolchain]
|
||||
channel = "nightly"
|
@ -1,5 +1,3 @@
|
||||
use bevy::prelude::*;
|
||||
|
||||
fn main() {
|
||||
App::build().run();
|
||||
println!("Hello, world!");
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user