tree-type 0.4.5

Rust macros for creating type-safe filesystem tree structures
Documentation
//! V2 code generation test suite
//!
//! Tests for unlimited nesting depth functionality in V2 codegen.
//! Run with: cargo test --features codegen-v2 --test v2

#![cfg(feature = "codegen-v2")]

#[path = "v2/nesting_4_level.rs"]
mod nesting_4_level;

#[path = "v2/nesting_5_level.rs"]
mod nesting_5_level;

#[path = "v2/nesting_10_level.rs"]
mod nesting_10_level;

#[path = "v2/transparent_serde.rs"]
mod transparent_serde;

#[path = "v2/transparent_root.rs"]
mod transparent_root;

// Error demonstration tests (not compiled, just documentation)
// #[path = "v2/transparent_in_dynamic_error.rs"]
// mod transparent_in_dynamic_error;
// #[path = "v2/transparent_on_dynamic_id_error.rs"]
// mod transparent_on_dynamic_id_error;