[package]
edition = "2024"
name = "camel-test"
version = "0.4.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Testing utilities for rust-camel"
homepage = "https://github.com/kennycallado/rust-camel"
documentation = "https://docs.rs/camel-test"
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/kennycallado/rust-camel"
resolver = "2"
[lib]
name = "camel_test"
path = "src/lib.rs"
[[test]]
name = "controlbus_test"
path = "tests/controlbus_test.rs"
[[test]]
name = "integration_test"
path = "tests/integration_test.rs"
[[test]]
name = "kafka_test"
path = "tests/kafka_test.rs"
[[test]]
name = "redis_test"
path = "tests/redis_test.rs"
[[test]]
name = "tracer_test"
path = "tests/tracer_test.rs"
[dependencies.camel-api]
version = "=0.4.0"
[dependencies.camel-builder]
version = "=0.4.0"
[dependencies.camel-component]
version = "=0.4.0"
[dependencies.camel-component-controlbus]
version = "=0.4.0"
[dependencies.camel-component-direct]
version = "=0.4.0"
[dependencies.camel-component-file]
version = "=0.4.0"
[dependencies.camel-component-http]
version = "=0.4.0"
[dependencies.camel-component-log]
version = "=0.4.0"
[dependencies.camel-component-mock]
version = "=0.4.0"
[dependencies.camel-component-timer]
version = "=0.4.0"
[dependencies.camel-core]
version = "=0.4.0"
[dependencies.camel-processor]
version = "=0.4.0"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tower]
version = "0.5"
features = ["util"]
[dev-dependencies.reqwest]
version = "0.12"
features = [
"rustls-tls",
"stream",
]
default-features = false
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.testcontainers]
version = "0.23"
[dev-dependencies.testcontainers-modules]
version = "0.11"
features = [
"redis",
"kafka",
]
[dev-dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dev-dependencies.wiremock]
version = "0.6"