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
pub mod build;
mod commons;
pub mod new;
pub mod serve;
pub mod watch;

use clap::{Parser, Subcommand};

pub use build::BuildOpts;
pub use commons::models::CommonOpts;
pub use new::NewOpts;
pub use serve::ServeOpts;
pub 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, None).await,
        Command::Watch(opts) => watch::run(opts).await,
    }
}