[package]
edition = "2024"
name = "camel-integration-test"
version = "0.46.0"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Scenario document model, parser, and integration-tier test harness for rust-camel"
homepage = "https://github.com/kennycallado/rust-camel"
documentation = "https://docs.rs/camel-integration-test"
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"
[features]
http = [
"dep:bytes",
"dep:camel-component-http",
"dep:http",
"dep:http-body-util",
"dep:hyper",
"dep:hyper-util",
]
security = ["camel-bundles/security"]
sql = ["dep:sqlx"]
[lib]
name = "camel_integration_test"
path = "src/lib.rs"
[[test]]
name = "circuit_fallback_test"
path = "tests/circuit_fallback_test.rs"
[[test]]
name = "direct_reply_test"
path = "tests/direct_reply_test.rs"
[[test]]
name = "dsl_builder_uri_identity_test"
path = "tests/dsl_builder_uri_identity_test.rs"
[[test]]
name = "http_client_lane_test"
path = "tests/http_client_lane_test.rs"
[[test]]
name = "http_inbound_test"
path = "tests/http_inbound_test.rs"
[[test]]
name = "http_outbound_test"
path = "tests/http_outbound_test.rs"
[[test]]
name = "http_partner_scripting_test"
path = "tests/http_partner_scripting_test.rs"
[[test]]
name = "log_assertion_test"
path = "tests/log_assertion_test.rs"
[[test]]
name = "log_foreign_subscriber_test"
path = "tests/log_foreign_subscriber_test.rs"
[[test]]
name = "partner_verification_test"
path = "tests/partner_verification_test.rs"
[dependencies.bytes]
version = "1"
optional = true
[dependencies.camel-api]
version = "=0.46.0"
[dependencies.camel-bundles]
version = "=0.46.0"
default-features = false
[dependencies.camel-component-api]
version = "=0.46.0"
[dependencies.camel-component-http]
version = "=0.46.0"
optional = true
[dependencies.camel-component-seda]
version = "=0.46.0"
[dependencies.camel-config]
version = "=0.46.0"
[dependencies.camel-core]
version = "=0.46.0"
[dependencies.camel-dsl]
version = "=0.46.0"
[dependencies.camel-matchers]
version = "=0.46.0"
[dependencies.futures]
version = "0.3"
[dependencies.http]
version = "1"
optional = true
[dependencies.http-body-util]
version = "0.1"
optional = true
default-features = false
[dependencies.humantime]
version = "2"
[dependencies.hyper]
version = "1"
features = [
"http1",
"client",
"server",
]
optional = true
default-features = false
[dependencies.hyper-util]
version = "0.1"
features = ["tokio"]
optional = true
default-features = false
[dependencies.noyalib]
version = "0.0.29"
features = ["compat-serde-yaml"]
[dependencies.regex]
version = "1"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio",
"any",
"sqlite",
]
optional = true
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[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.async-trait]
version = "0.1"
[dev-dependencies.camel-builder]
version = "=0.46.0"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.toml]
version = "1"
[lints.clippy]
all = "warn"
[lints.rust]
dead_code = "warn"
unused_imports = "warn"
unused_must_use = "warn"