[package]
edition = "2024"
rust-version = "1.85"
name = "sloop-daemon"
version = "0.3.0"
authors = ["Hamish Mackie"]
build = false
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Agentic coding scheduler — a daemon that runs background coding agents autonomously in isolated git worktrees"
homepage = "https://github.com/hamish-mackie/sloop"
readme = "README.md"
keywords = [
"agents",
"agentic",
"automation",
"daemon",
"scheduler",
]
categories = [
"command-line-utilities",
"development-tools",
]
license = "Apache-2.0"
repository = "https://github.com/hamish-mackie/sloop"
[lib]
name = "sloop"
path = "src/lib.rs"
[[bin]]
name = "sloop"
path = "src/main.rs"
[[test]]
name = "cli"
path = "tests/cli.rs"
[[test]]
name = "daemon"
path = "tests/daemon.rs"
[[test]]
name = "fake_agent"
path = "tests/fake_agent.rs"
[[test]]
name = "fuzz"
path = "tests/fuzz/main.rs"
[[test]]
name = "lease"
path = "tests/lease.rs"
[[test]]
name = "logs"
path = "tests/logs.rs"
[[test]]
name = "outcome"
path = "tests/outcome.rs"
[[test]]
name = "post"
path = "tests/post.rs"
[[test]]
name = "property"
path = "tests/property/main.rs"
[[test]]
name = "reindex"
path = "tests/reindex.rs"
[[test]]
name = "repair"
path = "tests/repair.rs"
[[test]]
name = "run"
path = "tests/run.rs"
[[test]]
name = "run_identity"
path = "tests/run_identity.rs"
[[test]]
name = "show"
path = "tests/show.rs"
[[test]]
name = "soak"
path = "tests/soak.rs"
[[test]]
name = "worker_verbs"
path = "tests/worker_verbs.rs"
[[test]]
name = "worktree_retention"
path = "tests/worktree_retention.rs"
[dependencies.base64]
version = "0.22"
[dependencies.clap]
version = "4.5"
features = ["derive"]
[dependencies.fs2]
version = "0.4"
[dependencies.libc]
version = "0.2"
[dependencies.regex]
version = "1.11"
[dependencies.rusqlite]
version = "0.39"
features = ["bundled"]
default-features = false
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml]
version = "0.9"
[dependencies.time]
version = "=0.3.41"
features = ["formatting"]
[dependencies.tokio]
version = "1.46"
features = [
"io-util",
"macros",
"net",
"rt-multi-thread",
"sync",
"time",
]
[dev-dependencies.proptest]
version = "1"
[dev-dependencies.tempfile]
version = "3.20"
[profile.dist]
lto = "thin"
inherits = "release"