[package]
edition = "2021"
rust-version = "1.88"
name = "cellos-fleet"
version = "0.5.1"
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "S3-queue fleet dispatch agent for CellOS — pulls pending cell specs from S3, claims them, hands off to a local cellos-supervisor."
homepage = "https://github.com/0ryant/CellOS"
documentation = "https://docs.rs/cellos-fleet"
readme = "README.md"
keywords = [
"cellos",
"fleet",
"s3",
"dispatch",
"queue",
]
categories = [
"asynchronous",
"network-programming",
]
license = "MIT OR Apache-2.0"
repository = "https://github.com/0ryant/CellOS"
[[bin]]
name = "cellos-fleet"
path = "src/main.rs"
[[test]]
name = "cellos_fleet_happy_path"
path = "tests/cellos_fleet_happy_path.rs"
[[test]]
name = "cellos_fleet_invariants"
path = "tests/cellos_fleet_invariants.rs"
[[test]]
name = "cellos_fleet_status_filtering"
path = "tests/cellos_fleet_status_filtering.rs"
[[test]]
name = "config_from_env"
path = "tests/config_from_env.rs"
[[test]]
name = "smoke"
path = "tests/smoke.rs"
[dependencies.anyhow]
version = "1"
[dependencies.cellos-core]
version = "0.7.2"
features = ["tracing-layer"]
[dependencies.hostname]
version = "0.4.2"
[dependencies.serde]
version = "1"
features = ["derive"]
[dependencies.serde_json]
version = "1"
[dependencies.tempfile]
version = "3.27.0"
[dependencies.tokio]
version = "1"
features = [
"rt-multi-thread",
"macros",
"sync",
"rt-multi-thread",
"macros",
"process",
"time",
"fs",
"signal",
]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = [
"env-filter",
"fmt",
"json",
]
[lints.clippy]
doc_lazy_continuation = "allow"
doc_overindented_list_items = "allow"