-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
88 lines (65 loc) · 1.85 KB
/
Cargo.toml
File metadata and controls
88 lines (65 loc) · 1.85 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
[workspace]
members = ["crates/*"]
resolver = "3"
[workspace.metadata.release]
shared-version = true
tag-name = "v{{version}}"
[workspace.package]
version = "0.1.4"
edition = "2024"
license = "MIT"
authors = ["icepuma"]
[workspace.dependencies]
# Async runtime
tokio = { version = "=1.48.0", features = ["full"] }
# Serialization
serde = { version = "=1.0.228", features = ["derive"] }
serde_json = "=1.0.145"
# HCL parsing
hcl-rs = "=0.19.4"
# CLI
clap = { version = "=4.5.53", features = ["derive"] }
# TUI
ratatui = "=0.29.0"
crossterm = "=0.29.0"
# Regex for probes
regex = "=1.12.2"
# Error handling
thiserror = "=2.0.17"
anyhow = "=1.0.100"
# Base64 for agent embedding
base64 = "=0.22.1"
# Unix syscalls (PTY recording in guest)
nix = { version = "=0.30.1", features = ["term", "process", "fs", "poll"] }
# Logging
tracing = "=0.1.44"
tracing-subscriber = { version = "=0.3.22", features = ["env-filter"] }
tracing-appender = "=0.2.4"
# XDG directories
dirs = "=6.0.0"
# Random name generation
petname = "=2.0.2"
rand = "=0.9.2"
# HTTP client for image downloads
reqwest = { version = "=0.12.26", default-features = false, features = ["rustls-tls-webpki-roots", "stream"] }
# Kubernetes API client (guest-side probes)
kube = { version = "=2.0.1", default-features = false, features = ["rustls-tls", "ring"] }
# Kubernetes OpenAPI bindings (required by kube)
k8s-openapi = "=0.26.1"
# Checksum verification
sha2 = "=0.10.9"
hex = "=0.4.3"
# Progress indicators
indicatif = "=0.18.3"
# Async utilities
futures-util = "=0.3.31"
# Socket utilities (buffer sizes, etc.)
socket2 = "=0.6.1"
# ANSI stripping
strip-ansi-escapes = "=0.2.1"
# Internal crates
intar-core = { path = "crates/intar-core" }
intar-probes = { path = "crates/intar-probes" }
intar-agent = { path = "crates/intar-agent" }
intar-vm = { path = "crates/intar-vm" }
intar-ui = { path = "crates/intar-ui" }