37 lines
770 B
Rust
37 lines
770 B
Rust
#![allow(clippy::single_component_path_imports)]
|
|
|
|
// rstest_reuse must be imported at the top of the crate.
|
|
#[cfg(test)]
|
|
use rstest_reuse;
|
|
|
|
mod cmd;
|
|
mod config;
|
|
mod db;
|
|
mod error;
|
|
mod shell;
|
|
mod util;
|
|
|
|
use std::io::{self, Write};
|
|
use std::{env, process};
|
|
|
|
use clap::Parser;
|
|
|
|
use crate::cmd::{Cmd, Run};
|
|
use crate::error::SilentExit;
|
|
|
|
pub fn main() {
|
|
// Forcibly disable backtraces.
|
|
env::remove_var("RUST_LIB_BACKTRACE");
|
|
env::remove_var("RUST_BACKTRACE");
|
|
|
|
if let Err(e) = Cmd::parse().run() {
|
|
match e.downcast::<SilentExit>() {
|
|
Ok(SilentExit { code }) => process::exit(code),
|
|
Err(e) => {
|
|
let _ = writeln!(io::stderr(), "zoxide: {:?}", e);
|
|
process::exit(1);
|
|
}
|
|
}
|
|
}
|
|
}
|