[package]
edition = "2024"
name = "camel-dsl"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "DSL support for rust-camel (YAML, etc)"
homepage = "https://github.com/kennycallado/rust-camel"
documentation = "https://docs.rs/camel-dsl"
readme = "README.md"
keywords = [
"camel",
"integration",
"messaging",
"routing",
"enterprise",
]
categories = [
"network-programming",
"asynchronous",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/kennycallado/rust-camel"
resolver = "2"
[lib]
name = "camel_dsl"
path = "src/lib.rs"
[[test]]
name = "convert_body_integration"
path = "tests/convert_body_integration.rs"
[[test]]
name = "declarative_compile_test"
path = "tests/declarative_compile_test.rs"
[[test]]
name = "declarative_contract_test"
path = "tests/declarative_contract_test.rs"
[[test]]
name = "discovery_test"
path = "tests/discovery_test.rs"
[dependencies.camel-api]
version = "=0.5.0"
[dependencies.camel-component]
version = "=0.5.0"
[dependencies.camel-core]
version = "=0.5.0"
[dependencies.camel-endpoint]
version = "=0.5.0"
[dependencies.camel-processor]
version = "=0.5.0"
[dependencies.glob]
version = "0.3"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.thiserror]
version = "2"
[dev-dependencies.tempfile]
version = "3"