amalgam-core 0.6.4

Core IR and type system for amalgam configuration generator
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Core intermediate representation and type system for amalgam

pub mod dependency_analyzer;
pub mod error;
pub mod fingerprint;
pub mod ir;
pub mod types;

pub use error::CoreError;
pub use ir::IR;
pub use types::{Type, TypeSystem};