[package]
edition = "2021"
rust-version = "1.75"
name = "yarli"
version = "0.2.0"
build = "crates/yarli-cli/build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "CLI, stream mode renderer, interactive TUI, scheduler, store, and API"
homepage = "https://github.com/rahulrajaram/yarli"
documentation = "https://docs.rs/yarli"
readme = "README.md"
license = "MIT OR Apache-2.0"
repository = "https://github.com/rahulrajaram/yarli"
[features]
chaos = []
debug-api = []
default = []
sw4rm = []
test-support = []
[lib]
name = "yarli_cli"
path = "crates/yarli-cli/src/lib.rs"
[[bin]]
name = "yarli"
path = "crates/yarli-cli/src/main.rs"
[[test]]
name = "budget_breach_run_failure"
path = "tests/integration/tests/budget_breach_run_failure.rs"
[[test]]
name = "concurrency_stress"
path = "tests/integration/tests/concurrency_stress.rs"
[[test]]
name = "concurrent_runs"
path = "tests/integration/tests/concurrent_runs.rs"
[[test]]
name = "crash_recovery"
path = "tests/integration/tests/crash_recovery.rs"
required-features = ["chaos"]
[[test]]
name = "event_trail_consistency"
path = "tests/integration/tests/event_trail_consistency.rs"
[[test]]
name = "gate_verification_retry"
path = "tests/integration/tests/gate_verification_retry.rs"
[[test]]
name = "graceful_shutdown"
path = "tests/integration/tests/graceful_shutdown.rs"
[[test]]
name = "long_running_stability"
path = "tests/integration/tests/long_running_stability.rs"
[[test]]
name = "multi_task_lifecycle"
path = "tests/integration/tests/multi_task_lifecycle.rs"
[[test]]
name = "resource_exhaustion"
path = "tests/integration/tests/resource_exhaustion.rs"
[[test]]
name = "time_based_failure_scenarios"
path = "tests/integration/tests/time_based_failure_scenarios.rs"
[[test]]
name = "yarli_api_postgres_integration"
path = "crates/yarli-api/tests/postgres_integration.rs"
[[test]]
name = "yarli_cli_postgres_integration"
path = "crates/yarli-cli/tests/postgres_integration.rs"
[[test]]
name = "yarli_parallel_merge_integration"
path = "crates/yarli-cli/tests/parallel_merge_integration.rs"
[[test]]
name = "yarli_queue_postgres_integration"
path = "crates/yarli-queue/tests/postgres_integration.rs"
[[test]]
name = "yarli_store_postgres_integration"
path = "crates/yarli-store/tests/postgres_integration.rs"
[[test]]
name = "yarli_tranches_preflight_integration"
path = "crates/yarli-cli/tests/tranches_preflight_integration.rs"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.7"
features = ["ws"]
[dependencies.chrono]
version = "0.4"
features = ["serde"]
[dependencies.clap]
version = "4"
features = ["derive"]
[dependencies.crossterm]
version = "0.28"
[dependencies.futures-util]
version = "0.3"
features = ["sink"]
[dependencies.hex]
version = "0.4"
[dependencies.libc]
version = "0.2"
[dependencies.opentelemetry]
version = "0.26"
[dependencies.opentelemetry-otlp]
version = "0.26"
[dependencies.opentelemetry_sdk]
version = "0.26"
features = ["rt-tokio"]
[dependencies.owo-colors]
version = "4"
[dependencies.prometheus-client]
version = "0.23"
[dependencies.rand]
version = "0.8"
[dependencies.ratatui]
version = "0.29"
[dependencies.reqwest]
version = "0.12"
features = [
"json",
"rustls-tls",
]
default-features = false
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.sha2]
version = "0.10"
[dependencies.sqlx]
version = "0.8"
features = [
"runtime-tokio-rustls",
"postgres",
"uuid",
"chrono",
"json",
]
[dependencies.sw4rm-sdk]
version = "0.4"
[dependencies.thiserror]
version = "2"
[dependencies.tokio]
version = "1"
features = ["full"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.toml]
version = "0.8"
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-opentelemetry]
version = "0.27"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"json",
]
[dependencies.uuid]
version = "1"
features = [
"v4",
"v5",
"v7",
"serde",
]
[dev-dependencies.assert_matches]
version = "1.5"
[dev-dependencies.axum08]
version = "0.8"
package = "axum"
[dev-dependencies.tempfile]
version = "3"
[dev-dependencies.tower]
version = "0.5"
features = ["util"]