1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
mod build;
mod new;
mod serve;
mod models;
mod check_env;
mod command;
mod watch;
mod spawn;
use clap::{Parser, Subcommand};

use build::BuildOpts;
use new::NewOpts;
use serve::ServeOpts;
use watch::WatchOpts;

#[derive(Parser)]
#[command(author, version, about, long_about = None)]
#[command(propagate_version = true)]
struct Cli {
    #[command(subcommand)]
    command: Command,
}

#[derive(Subcommand)]
enum Command {
    New(NewOpts),
    Build(BuildOpts),
    Serve(ServeOpts),
    Watch(WatchOpts),
}

#[tokio::main]
pub async fn main() -> Result<(), i32> {
    env_logger::Builder::new()
        .filter(None, log::LevelFilter::Info)
        .filter(Some("cargo::core::compiler"), log::LevelFilter::Warn)
        .filter(Some("cranelift_codegen::context"), log::LevelFilter::Warn)
        .init();

    let cli = Cli::parse();
    match cli.command {
        Command::Build(opts) => {
            build::run(opts)
        }
        Command::New(opts) => {
            new::run(opts)
        }
        Command::Serve(opts) => {
            serve::run(opts).await
        }
        Command::Watch(opts) => {
            watch::run(opts).await
        }
    }
}