cargo-solar 0.0.1

Cargo tool for automating use of the solar framework used for building rust projects.
Documentation
1
2
3
4
5
6
7
8
9
10
use clap::Parser;

use solar_core::Subcommand;

#[derive(Parser)]
pub struct Args {
    /// The specific solar command to use.
    #[command(subcommand)]
    pub subcommand: Subcommand,
}