frate 0.4.0

A local, dev-focused package manager for developer tools, inspired by Scoop and Cargo
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod cli;
mod execute;

use clap::Parser;
use crate::cli::Cli;
use anyhow::Result;

fn main() -> Result<()>{
    let cli = Cli::parse();
    execute::execute(cli)
}