-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
100 lines (82 loc) · 2.27 KB
/
Copy pathCargo.toml
File metadata and controls
100 lines (82 loc) · 2.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[workspace]
resolver = "2"
members = [
"crates/looper-types",
"crates/looper-config",
"crates/looper-storage",
"crates/looper-service",
"crates/looper-github",
"crates/looper-git",
"crates/looper-agent",
"crates/looper-scheduler",
"crates/looper-runner",
"crates/looper-api",
"crates/looper-webhook",
"crates/looper-infra",
"crates/looperd",
"crates/looper-cli",
"crates/looper-net",
"crates/diffanchor",
"crates/looper-e2e",
"crates/looper-release",
"crates/looper-forge",
"crates/looper-plane",
]
[workspace.package]
version = "0.1.0"
edition = "2021"
license = "MIT"
authors = ["quangdang46"]
repository = "https://github.com/quangdang46/looper"
description = "Autonomous AI dev team for your GitHub repos — Rust port"
[workspace.lints]
rust.unused_crate_dependencies = "warn"
[workspace.dependencies]
# Async runtime
tokio = { version = "1", features = ["full"] }
tokio-util = "0.7"
# Serialization
serde = { version = "1", features = ["derive"] }
serde_json = "1"
serde_yaml = "0.9"
toml = "0.8"
# CLI
clap = { version = "4", features = ["derive", "env"] }
# Error handling
anyhow = "1"
thiserror = "2"
# Logging / observability
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["json", "env-filter"] }
tracing-appender = "0.2"
# Database
rusqlite = { version = "0.33", features = ["bundled"] }
refinery = { version = "0.9", features = ["rusqlite"] }
# Git
git2 = "0.20"
# HTTP / API
axum = "0.8"
tower-http = { version = "0.6", features = ["cors", "trace"] }
reqwest = { version = "0.12", default-features = false, features = ["rustls-tls", "json"] }
# IDs, time, text
uuid = { version = "1", features = ["v4", "serde"] }
chrono = { version = "0.4", features = ["serde"] }
regex = "1"
directories = "6"
# Async helpers
futures = "0.3"
tokio-stream = "0.1"
async-trait = "0.1"
# Treehouse (worktree pool)
treehouse-core = { git = "https://github.com/quangdang46/treehouse_rust.git", rev = "4dc5d5e" }
# Unix process group signals
nix = "0.29"
# Config file watch
notify = "7"
# File system utilities
tempfile = "3"
which = "7"
# Project management providers
looper-forge = { path = "crates/looper-forge" }
# Metrics
prometheus = { version = "0.13", default-features = false, features = ["process"] }