[package]
edition = "2024"
name = "camel-core"
version = "0.5.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Core engine for rust-camel"
homepage = "https://github.com/kennycallado/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 = "bean_integration_test"
path = "tests/bean_integration_test.rs"
[[test]]
name = "hexagonal_architecture_boundaries_test"
path = "tests/hexagonal_architecture_boundaries_test.rs"
[[test]]
name = "hot_reload"
path = "tests/hot_reload.rs"
[[test]]
name = "hot_reload_integration"
path = "tests/hot_reload_integration.rs"
[[test]]
name = "metrics_tests"
path = "tests/metrics_tests.rs"
[[test]]
name = "runtime_commands_test"
path = "tests/runtime_commands_test.rs"
[[test]]
name = "runtime_consistency_test"
path = "tests/runtime_consistency_test.rs"
[[test]]
name = "runtime_durable_boundary_test"
path = "tests/runtime_durable_boundary_test.rs"
[[test]]
name = "runtime_fault_injection_test"
path = "tests/runtime_fault_injection_test.rs"
[[test]]
name = "runtime_idempotency_test"
path = "tests/runtime_idempotency_test.rs"
[[test]]
name = "runtime_journal_test"
path = "tests/runtime_journal_test.rs"
[[test]]
name = "runtime_queries_test"
path = "tests/runtime_queries_test.rs"
[[test]]
name = "runtime_replay_assessment_test"
path = "tests/runtime_replay_assessment_test.rs"
[[test]]
name = "runtime_uow_test"
path = "tests/runtime_uow_test.rs"
[dependencies.arc-swap]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.camel-api]
version = "=0.5.0"
[dependencies.camel-bean]
version = "=0.5.0"
[dependencies.camel-component]
version = "=0.5.0"
[dependencies.camel-endpoint]
version = "=0.5.0"
[dependencies.camel-language-api]
version = "=0.5.0"
[dependencies.camel-language-simple]
version = "=0.5.0"
[dependencies.camel-processor]
version = "=0.5.0"
[dependencies.camel-support]
version = "=0.5.0"
[dependencies.camel-util]
version = "=0.5.0"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.notify]
version = "6"
features = ["macos_fsevent"]
[dependencies.opentelemetry]
version = "0.31"
features = [
"trace",
"logs",
"metrics",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = [
"rt",
"io",
]
[dependencies.tower]
version = "0.5"
features = ["util"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"fmt",
"json",
"env-filter",
]
[dev-dependencies.futures]
version = "0.3"
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"