abscissa_generator 0.1.0

Template-based generator for creating new Abscissa applications
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Application properties related to the Rust programming language

use serde::{Deserialize, Serialize};

/// Rust edition used by the application (2018+)
#[derive(Copy, Clone, Debug, Deserialize, Eq, PartialEq, Serialize)]
pub enum Edition {
    /// Rust 2018 edition (minimum supported by Abscissa)
    #[serde(rename = "2018")]
    Rust2018,
}