ssdcg 0.6.0

A service and data description format + a code generator based on rhai scripts
Documentation
1
2
3
4
5
6
7
8
9
10
#![warn(clippy::pedantic)]

mod ast;
mod parser;

pub use ast::{
    Attribute, DataType, Dependency, Enum, EnumValue, Handler, Import, NameTypePair, Namespace,
    OrderedMap, Parameter, Service, SsdcFile,
};
pub use parser::{parse, parse_file, ParseError};