mirror of
https://github.com/hinto-janai/cuprate.git
synced 2025-03-22 23:28:45 +00:00
* abscissa init * remove package in cargo.toml * cargo fmt + remove more stuff fro toml * bump rust edition
22 lines
440 B
Rust
22 lines
440 B
Rust
//! Cuprate
|
|
//!
|
|
//! Application based on the [Abscissa] framework.
|
|
//!
|
|
//! [Abscissa]: https://github.com/iqlusioninc/abscissa
|
|
|
|
// Tip: Deny warnings with `RUSTFLAGS="-D warnings"` environment variable in CI
|
|
|
|
#![forbid(unsafe_code)]
|
|
#![warn(
|
|
missing_docs,
|
|
rust_2018_idioms,
|
|
trivial_casts,
|
|
unused_lifetimes,
|
|
unused_qualifications
|
|
)]
|
|
|
|
pub mod application;
|
|
pub mod commands;
|
|
pub mod config;
|
|
pub mod error;
|
|
pub mod prelude;
|