knope 0.7.0

A command line tool for automating common development tasks
Documentation
#![deny(clippy::all)]
#![deny(clippy::pedantic)]
#![deny(clippy::cargo)]
#![allow(clippy::multiple_crate_versions)] // Let cargo-deny handle this
#![forbid(unsafe_code)]

use clap::Parser;
use miette::Result;
use std::env::var;

use knope::{run, Cli};

fn main() -> Result<()> {
    if var("RUST_LOG").is_ok() {
        env_logger::init();
    }
    run(Cli::parse())
}