Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
204 changes: 204 additions & 0 deletions rust/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions rust/fleet-launcher/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[package]
name = "fleet-launcher"
version = "0.0.1"
edition = "2021"
publish = false
description = "Spawn codex / claude / gemini sessions in kitty windows. Ports the kitty-spawn path from ~/Documents/hcom (terminal.rs) into a small standalone API for codex-fleet supervisors and tooling."

[lib]
path = "src/lib.rs"

[[bin]]
name = "fleet-spawn"
path = "src/bin/spawn.rs"

[dependencies]
libc = "0.2"

# Cross-platform process-liveness checks for the presence/heartbeat file
# work. Disable default features so we don't pay for component/network/disk
# probes we never read — `is_alive(pid)` only needs the process refresh.
sysinfo = { version = "0.32", default-features = false, features = ["system"] }

# Modern date-time crate for heartbeat timestamps. Picked over `chrono` for
# correctness (Jiff's tz model + arithmetic don't carry chrono's leap-second
# / DST footguns) and over `time` for ergonomics.
jiff = "0.2"
Loading