liquid 0.21.1

The liquid templating language for Rust
Documentation
#[test]
#[should_panic]
fn test_template_allows_flagging_profiling() {
    panic!("Implementation specific: profiling API");
}

#[test]
#[should_panic]
fn test_parse_makes_available_simple_profiling() {
    panic!("Implementation specific: profiling API");
}

#[test]
#[should_panic]
fn test_render_ignores_raw_strings_when_profiling() {
    panic!("Implementation specific: profiling API");
}

#[test]
#[should_panic]
fn test_profiling_includes_line_numbers_of_liquid_nodes() {
    panic!("Implementation specific: profiling API");
}

#[test]
#[should_panic]
fn test_profiling_includes_line_numbers_of_included_partials() {
    panic!("Implementation specific: profiling API");
}

#[test]
#[should_panic]
fn test_profiling_times_the_rendering_of_tokens() {
    panic!("Implementation specific: profiling API");
}

#[test]
#[should_panic]
fn test_profiling_times_the_entire_render() {
    panic!("Implementation specific: profiling API");
}

#[test]
#[should_panic]
fn test_profiling_uses_include_to_mark_children() {
    panic!("Implementation specific: profiling API");
}

#[test]
#[should_panic]
fn test_profiling_marks_children_with_the_name_of_included_partial() {
    panic!("Implementation specific: profiling API");
}

#[test]
#[should_panic]
fn test_profiling_supports_multiple_templates() {
    panic!("Implementation specific: profiling API");
}

#[test]
#[should_panic]
fn test_profiling_supports_rendering_the_same_partial_multiple_times() {
    panic!("Implementation specific: profiling API");
}

#[test]
#[should_panic]
fn test_can_iterate_over_each_profiling_entry() {
    panic!("Implementation specific: profiling API");
}

#[test]
#[should_panic]
fn test_profiling_marks_children_of_if_blocks() {
    panic!("Implementation specific: profiling API");
}

#[test]
#[should_panic]
fn test_profiling_marks_children_of_for_blocks() {
    panic!("Implementation specific: profiling API");
}