alma 0.1.0

A Bevy-native modal text editor with Vim-style navigation.
Documentation
  • Coverage
  • 100%
    263 out of 263 items documented0 out of 15 items with examples
  • Size
  • Source code size: 598.47 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 13.55 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 2m 38s Average build duration of successful builds.
  • all releases: 2m 38s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • Repository
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • almanaculum

Alma

Alma is a Bevy application scaffold targeting Bevy 0.18.1.

Development

For a faster Bevy edit loop, run with the dev feature:

cargo run --features dev

This enables Bevy dynamic linking for faster rebuilds and the file watcher for asset hot reload. Rust code still needs the app process to restart after a compile. To do that automatically, install cargo-watch once:

cargo install cargo-watch

Then run:

cargo watch -x "run --features dev"

Now source changes rebuild and relaunch the app for you. Asset changes under assets/ can reload inside the running app when Bevy has loaded those assets.