solar-core 1.0.5

Core library for cargo-solar command.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use derive_getters::Getters;
use serde::{Deserialize, Serialize};

#[derive(Deserialize, Serialize, Clone, Default, PartialEq, Debug, Getters)]
pub struct Parameters {
    project_name: String,
}

impl Parameters {
    pub fn new(project_name: String) -> Self {
        Self { project_name }
    }
}