-
Notifications
You must be signed in to change notification settings - Fork 121
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Also upgrades the following: - Abscissa v0.6.0-pre.1 - `bytes` v1 - `hyper` v0.14 - `prost` v0.7 - `tendermint`(-rs) v0.18
- Loading branch information
1 parent
1da17af
commit ed5cb83
Showing
15 changed files
with
228 additions
and
424 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
//! Main entry point for the `tmkms` executable | ||
|
||
use tmkms::application::APPLICATION; | ||
use tmkms::application::APP; | ||
|
||
/// Boot the `tmkms` application | ||
fn main() { | ||
abscissa_core::boot(&APPLICATION); | ||
abscissa_core::boot(&APP); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,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}; | ||
|
||
/// Error macros | ||
pub use abscissa_core::{ensure, fail, fatal, format_err}; | ||
|
||
/// Tracing macros | ||
pub use abscissa_core::tracing::{debug, error, event, info, span, trace, warn, Level}; | ||
/// Abscissa core prelude | ||
pub use abscissa_core::prelude::*; | ||
|
||
/// Status macros | ||
pub use abscissa_core::{ | ||
status_attr_err, status_attr_ok, status_err, status_info, status_ok, status_warn, | ||
}; | ||
pub use abscissa_core::{status_attr_err, status_attr_ok}; | ||
|
||
/// Application state | ||
pub use crate::application::APP; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters