camel-cli 0.45.2

Command-line interface for Apache Camel in Rust
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod bench_instrument;
pub mod errors;
pub mod job;
pub mod journal;
pub mod lint;
pub mod lsp;
pub mod new;
pub mod openapi;
pub mod plugin;
pub mod run;
pub mod test;

// Shared test helpers: `security` covers the run_tests.rs callers,
// `integration-http` the scenario tests; outside that union the helper
// would be dead code.
#[cfg(all(test, any(feature = "security", feature = "integration-http")))]
pub(crate) mod test_support;