morphir-projection 0.1.0

Shared Morphir IR normalization for backend extensions
Documentation
//! Shared Morphir IR fixtures for backend extension tests.
//!
//! Enabled by the `testing` feature so that extension crates can build IR
//! fixtures without duplicating them.

pub mod classic;
pub mod v4;

// Each integration-test crate uses a different subset of the shared facade.
#[allow(unused_imports)]
pub use classic::{
    classic_colliding_names_library, classic_customer_library, classic_function_field_library,
    classic_schema_library,
};
#[allow(unused_imports)]
pub use v4::{
    v4_customer_application, v4_customer_application_with_entry_points, v4_customer_library,
    v4_customer_specs, v4_incomplete_library,
};