sloop-daemon 0.5.0

Agentic coding scheduler — a daemon that runs background coding agents autonomously in isolated git worktrees
Documentation
[package]
name = "sloop-daemon"
version = "0.5.0"
edition = "2024"
rust-version = "1.85"
authors = ["Hamish Mackie"]
description = "Agentic coding scheduler — a daemon that runs background coding agents autonomously in isolated git worktrees"
repository = "https://github.com/hamish-mackie/sloop"
homepage = "https://github.com/hamish-mackie/sloop"
license = "Apache-2.0"
keywords = ["agents", "agentic", "automation", "daemon", "scheduler"]
categories = ["command-line-utilities", "development-tools"]

[lib]
name = "sloop"

[[bin]]
name = "sloop"
path = "src/main.rs"

[dependencies]
async-trait = "0.1.91"
base64 = "0.22"
clap = { version = "4.5", features = ["derive"] }
fs2 = "0.4"
libc = "0.2"
regex = "1.11"
rusqlite = { version = "0.39", default-features = false, features = ["bundled"] }
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
time = { version = "=0.3.41", features = ["formatting", "parsing"] }
tokio = { version = "1.46", features = ["io-util", "macros", "net", "rt-multi-thread", "sync", "time"] }

[dev-dependencies]
proptest = "1"
tempfile = "3.20"

# The profile that `dist` uses for release artifacts.
[profile.dist]
inherits = "release"
lto = "thin"