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,
}
}