cargo-move 0.0.0

Cargo plugin for the Move language
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Application-local prelude: conveniently import types/functions/macros
//! which are generally useful and should be available everywhere.

/// Application state accessors
pub use crate::application::{app_config, app_reader, app_writer};

/// Commonly used Abscissa traits
pub use abscissa_core::{Application, Command, Runnable};

/// Logging macros
pub use abscissa_core::log::{debug, error, info, log, log_enabled, trace, warn};