camel-cli 0.39.0

Command-line interface for Apache Camel in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use super::document::*;
use std::time::Duration;

fn err_of(yaml: &str) -> TestDocError {
    match parse_test_document(yaml) {
        Ok(doc) => panic!("document should fail to parse, got: {doc:?}"),
        Err(e) => e,
    }
}

mod beans;
mod intercepts;
mod parsing;
mod reply;
mod repositories;