[package]
edition = "2024"
name = "camel-core"
version = "0.2.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core engine for rust-camel"
documentation = "https://docs.rs/camel-core"
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_core"
path = "src/lib.rs"
[[test]]
name = "hot_reload"
path = "tests/hot_reload.rs"
[[test]]
name = "metrics_tests"
path = "tests/metrics_tests.rs"
[dependencies.arc-swap]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.camel-api]
version = "0.2.0"
[dependencies.camel-component]
version = "0.2.0"
[dependencies.camel-endpoint]
version = "0.2.0"
[dependencies.camel-language-api]
version = "0.2.1"
[dependencies.camel-language-simple]
version = "0.2.1"
[dependencies.camel-processor]
version = "0.2.0"
[dependencies.camel-support]
version = "0.2.0"
[dependencies.camel-util]
version = "0.2.0"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tower]
version = "0.5"
features = ["util"]
[dependencies.tracing]
version = "0.1"
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.tempfile]
version = "3"