alma 0.1.0

A Bevy-native modal text editor with Vim-style navigation.
Documentation
#![deny(clippy::all)]
#![deny(clippy::dbg_macro)]
#![deny(clippy::cargo)]
#![allow(clippy::multiple_crate_versions)]
#![warn(clippy::nursery)]
#![deny(clippy::pedantic)]
#![deny(missing_docs)]
#![forbid(unsafe_code)]
#![deny(unused_results)]
#![allow(clippy::collapsible_if)]
#![deny(clippy::missing_docs_in_private_items)]
#![warn(clippy::missing_errors_doc)]
#![warn(clippy::missing_panics_doc)]

//! Binary entry point for Alma.

/// Starts the Alma application.
///
/// # Errors
///
/// Returns an error when the launch file cannot be opened or read as UTF-8.
fn main() -> Result<(), alma::BufferOpenError> {
    alma::run()
}