ITADN
richelbilderbeek/bevy_tdd_book_create_title_image
richelbilderbeek/bevy_tdd_book_create_title_image · 文件
文件最后提交记录最后更新时间
README.md

bevy_tdd_book_create_title_image

Check build Check links Check markdown Check Rust style Check spelling Measure code coverage codecov

Chapter of https://github.com/richelbilderbeek/bevy_tdd_book


TODO: 

![Screenshot of this application](create_title_image.png)

Setup

Setup is done as described in the Bevy 'getting started' guide:

git clone https://github.com/richelbilderbeek/bevy_tdd_book_create_title_image
cd bevy_tdd_book_create_title_image
cargo init
cargo add bevy

To Cargo.toml add:

# Enable a small amount of optimization in debug mode
[profile.dev]
opt-level = 1

# Enable high optimizations for dependencies (incl. Bevy), but not for our code:
[profile.dev.package."*"]
opt-level = 3

To .cargo/config.toml add:

[target.x86_64-unknown-linux-gnu]
linker = "clang"
rustflags = ["-C", "link-arg=-fuse-ld=lld"]

Contributors

These are people and websites that helped me, in alphabetical order:

Files used by continuous integration scripts

FilenameDescriptions
mlc_config.jsonConfiguration of the link checker, use markdown-link-check --config mlc_config.json --quiet docs/**/*.md to do link checking locally
.spellcheck.ymlConfiguration of the spell checker, use pyspelling -c .spellcheck.yml to do spellcheck locally
.wordlist.txtWhitelisted words for the spell checker, use pyspelling -c .spellcheck.yml to do spellcheck locally
.markdownlint.jsoncConfiguration of the markdown linter, use markdownlint "**/*.md" to do markdown linting locally. The name of this file is a default name.
.markdownlintignoreFiles ignored by the markdown linter, use markdownlint "**/*.md" to do markdown linting locally. The name of this file is a default name.

References