forked from ghostchain/ghost-node
18 lines
443 B
Rust
Executable File
18 lines
443 B
Rust
Executable File
//! Ghost CLI
|
|
|
|
#![warn(missing_docs)]
|
|
|
|
use color_eyre::eyre;
|
|
|
|
/// Global allocator. Changing it to another allocator will require changing
|
|
/// `memory_stats::MemoryAllicationTracker`.
|
|
#[cfg(any(target_os = "linux", feature = "jemalloc-allocator"))]
|
|
#[global_allocator]
|
|
pub static ALLOC: tikv_jemallocator::Jemalloc = tikv_jemallocator::Jemalloc;
|
|
|
|
fn main() -> eyre::Result<()> {
|
|
color_eyre::install()?;
|
|
ghost_cli::run()?;
|
|
Ok(())
|
|
}
|