This repository was archived by the owner on Jul 17, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathCargo.toml
More file actions
82 lines (74 loc) · 2.24 KB
/
Copy pathCargo.toml
File metadata and controls
82 lines (74 loc) · 2.24 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
[workspace]
members = [".", "crates/integration-tests"]
resolver = "3"
[package]
name = "devaipod"
version = "0.1.0"
edition = "2024"
description = "Sandboxed AI coding agents in reproducible dev environments"
repository = "https://github.com/cgwalters/devaipod"
readme = "README.md"
keywords = ["devcontainer", "ai", "agents", "devpod", "containers"]
categories = ["development-tools", "command-line-utilities"]
license = "MIT OR Apache-2.0"
[dependencies]
bollard = "0.18"
chrono = "0.4"
clap = { version = "4.5", features = ["derive", "env"] }
clap_complete = "4.5"
color-eyre = "0.6"
futures-util = "0.3"
notify = "7"
rand = "0.9.2"
rustix = { version = "1.1.3", features = ["process"] }
cap-std-ext = "5"
indexmap = { version = "2", features = ["serde"] }
serde = { version = "1", features = ["derive"] }
shell-words = "1"
serde_json = "1"
serde_yaml = "0.9"
tar = "0.4"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "process", "fs", "io-util", "io-std", "time", "sync", "signal"] }
toml = "0.8"
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
tempfile = "3"
url = "2"
urlencoding = "2"
reqwest = { version = "0.13", features = ["json"] }
jsonc-parser = { version = "0.29.0", features = ["serde"] }
jsonwebtoken = "9"
dialoguer = "0.11"
ratatui = "0.29"
crossterm = { version = "0.28", features = ["event-stream"] }
# Web UI server
axum = { version = "0.8", features = ["ws"] }
base64 = "0.22"
http-body-util = "0.1"
hyper = { version = "1", features = ["client", "http1", "server"] }
hyper-util = { version = "0.1", features = ["client-legacy", "http1", "tokio"] }
tower = "0.5"
tower-http = { version = "0.6", features = ["fs", "cors", "compression-full"] }
# SSH server for remote development (VSCode/Zed integration)
russh = { version = "0.59", features = ["aws-lc-rs"] }
russh-sftp = "2.1"
async-stream = "0.3"
async-trait = "0.1"
pin-project = "1"
tokio-stream = "0.1.18"
[dev-dependencies]
insta = "1"
rstest = "0.24"
[workspace.lints.rust]
unsafe_code = "deny"
unused_must_use = "forbid"
missing_docs = "deny"
missing_debug_implementations = "deny"
dead_code = "deny"
[workspace.lints.clippy]
dbg_macro = "deny"
todo = "deny"
needless_borrow = "allow"
needless_borrows_for_generic_args = "allow"
[lints]
workspace = true