[package]
edition = "2021"
name = "loopflow"
version = "0.9.9"
build = "build.rs"
autolib = false
autobins = false
autoexamples = false
autotests = false
autobenches = false
description = "Run steps and flows with coding agents"
readme = false
keywords = [
"ai",
"llm",
"agent",
"workflow",
"automation",
]
categories = [
"development-tools",
"command-line-utilities",
]
license = "MIT"
repository = "https://github.com/loopflowstudio/loopflow"
[lib]
name = "loopflow"
crate-type = ["rlib"]
path = "src/lib.rs"
[[bin]]
name = "lf"
path = "src/bin/lf.rs"
[[bin]]
name = "lf-prompt"
path = "src/bin/lf-prompt.rs"
[[bin]]
name = "lfd"
path = "src/bin/lfd.rs"
[[test]]
name = "agent_tests"
path = "tests/agent_tests.rs"
[[test]]
name = "combine_tests"
path = "tests/combine_tests.rs"
[[test]]
name = "commit_tests"
path = "tests/commit_tests.rs"
[[test]]
name = "config_tests"
path = "tests/config_tests.rs"
[[test]]
name = "context_tests"
path = "tests/context_tests.rs"
[[test]]
name = "discovery_tests"
path = "tests/discovery_tests.rs"
[[test]]
name = "flow_tests"
path = "tests/flow_tests.rs"
[[test]]
name = "git_tests"
path = "tests/git_tests.rs"
[[test]]
name = "golden_prompt"
path = "tests/golden_prompt.rs"
[[test]]
name = "land_tests"
path = "tests/land_tests.rs"
[[test]]
name = "next_tests"
path = "tests/next_tests.rs"
[[test]]
name = "pr_tests"
path = "tests/pr_tests.rs"
[[test]]
name = "rebase_tests"
path = "tests/rebase_tests.rs"
[[test]]
name = "release_tests"
path = "tests/release_tests.rs"
[[test]]
name = "token_tests"
path = "tests/token_tests.rs"
[[test]]
name = "wave_worktree_tests"
path = "tests/wave_worktree_tests.rs"
[[test]]
name = "worktree_tests"
path = "tests/worktree_tests.rs"
[dependencies.aes-gcm]
version = "0.10"
[dependencies.anyhow]
version = "1"
[dependencies.async-trait]
version = "0.1"
[dependencies.axum]
version = "0.8"
features = ["ws"]
[dependencies.base64]
version = "0.22"
[dependencies.bollard]
version = "0.19"
[dependencies.bytes]
version = "1"
[dependencies.chrono]
version = "0.4"
features = [
"clock",
"serde",
]
default-features = false
[dependencies.clap]
version = "4.5"
features = [
"derive",
"env",
]
[dependencies.cron]
version = "0.12"
[dependencies.ctrlc]
version = "3"
[dependencies.deadpool-postgres]
version = "0.14"
[dependencies.dirs]
version = "5"
[dependencies.futures-util]
version = "0.3"
[dependencies.gethostname]
version = "0.4"
[dependencies.hex]
version = "0.4"
[dependencies.hmac]
version = "0.12"
[dependencies.humantime]
version = "2"
[dependencies.ignore]
version = "0.4"
[dependencies.ipnet]
version = "2"
[dependencies.once_cell]
version = "1"
[dependencies.rand]
version = "0.10"
[dependencies.regex]
version = "1"
[dependencies.reqwest]
version = "0.13"
features = [
"blocking",
"json",
]
[dependencies.rusqlite]
version = "0.38"
features = ["bundled"]
[dependencies.secrecy]
version = "0.8"
features = ["serde"]
[dependencies.serde]
version = "1.0"
features = ["derive"]
[dependencies.serde_json]
version = "1.0"
[dependencies.serde_yaml_ng]
version = "0.9"
[dependencies.sha2]
version = "0.10"
[dependencies.subtle]
version = "2"
[dependencies.tar]
version = "0.4"
[dependencies.tempfile]
version = "3.9"
[dependencies.thiserror]
version = "1.0"
[dependencies.tiktoken-rs]
version = "0.9"
[dependencies.time]
version = "0.3"
features = [
"formatting",
"parsing",
"serde",
]
[dependencies.tokio]
version = "1"
features = [
"io-util",
"macros",
"process",
"rt-multi-thread",
"signal",
"sync",
"time",
]
[dependencies.tokio-postgres]
version = "0.7"
features = [
"with-chrono-0_4",
"with-serde_json-1",
]
[dependencies.tokio-stream]
version = "0.1"
features = ["sync"]
[dependencies.tokio-util]
version = "0.7"
features = ["rt"]
[dependencies.tower-http]
version = "0.6"
features = ["trace"]
[dependencies.tracing]
version = "0.1"
[dependencies.tracing-subscriber]
version = "0.3"
features = ["env-filter"]
[dependencies.uuid]
version = "1"
features = ["v4"]
[dev-dependencies.tokio]
version = "1"
features = ["test-util"]