[package]
edition = "2021"
name = "robson-core"
version = "0.1.0"
authors = ["Fabiano Martins <fabiano.paula.martins@gmail.com>"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Rust async agent orchestrator for automated development workflows"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/ofabianomartins/robson"
[lib]
name = "robson_core"
path = "src/lib.rs"
doctest = false
[[test]]
name = "agent_gateway_tests"
path = "tests/agent_gateway_tests.rs"
[[test]]
name = "agent_tests"
path = "tests/agent_tests.rs"
[[test]]
name = "conversation_gateway_routing_tests"
path = "tests/conversation_gateway_routing_tests.rs"
[[test]]
name = "conversation_queue_tests"
path = "tests/conversation_queue_tests.rs"
[[test]]
name = "gateway_entity_tests"
path = "tests/gateway_entity_tests.rs"
[[test]]
name = "process_event_deliveries_tests"
path = "tests/process_event_deliveries_tests.rs"
[[test]]
name = "process_event_tests"
path = "tests/process_event_tests.rs"
[[test]]
name = "scheduler_tests"
path = "tests/scheduler_tests.rs"
[[test]]
name = "utils_tests"
path = "tests/utils_tests.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.futures-util]
version = "0.3"
[dependencies.regex]
version = "1"
[dependencies.sea-orm]
version = "1.1.20"
features = [
"sqlx-sqlite",
"runtime-tokio-native-tls",
"macros",
"with-chrono",
]
[dependencies.sea-orm-migration]
version = "1.1.20"
features = [
"sqlx-sqlite",
"runtime-tokio-native-tls",
]
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.tempfile]
version = "3"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.serde_json]
version = "1"
[dev-dependencies.tokio]
version = "1"
features = ["full"]
[dev-dependencies.tracing-test]
version = "0.2"
[dev-dependencies.wiremock]
version = "0.6"