smaug-lib 0.5.0

The library for interacting with Smaug projects
Documentation
1
2
3
4
5
6
7
8
use semver::Version;
#[derive(Debug)]
pub struct Project {
    pub authors: Vec<String>,
    pub name: String,
    pub version: Version,
    pub compile_ruby: bool,
}