-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathCargo.toml
More file actions
77 lines (66 loc) · 3.77 KB
/
Cargo.toml
File metadata and controls
77 lines (66 loc) · 3.77 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
[package]
name = "codex-temporal"
version = "0.1.0"
edition = "2024"
license = "MIT"
description = "Temporal durable execution harness for OpenAI Codex CLI agent"
repository = "https://github.com/mfateev/codex-temporal"
[dependencies]
anyhow = "1.0"
chrono = "0.4"
color-eyre = "0.6"
reqwest = { version = "0.12", features = ["json"] }
async-trait = "0.1"
futures = "0.3"
futures-util = "0.3"
serde = { version = "1", features = ["derive"] }
serde_json = "1"
toml = "0.8"
tokio = { version = "1", features = ["rt-multi-thread", "macros", "signal", "process", "time", "sync"] }
tokio-util = { version = "0.7", features = ["rt"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
uuid = { version = "1", features = ["v4"] }
# Temporal Rust SDK — upstream master
temporalio-sdk = { git = "https://github.com/temporalio/sdk-core.git", branch = "master" }
temporalio-sdk-core = { git = "https://github.com/temporalio/sdk-core.git", branch = "master" }
temporalio-client = { git = "https://github.com/temporalio/sdk-core.git", branch = "master" }
temporalio-macros = { git = "https://github.com/temporalio/sdk-core.git", branch = "master" }
temporalio-common = { git = "https://github.com/temporalio/sdk-core.git", branch = "master" }
# Codex crates — task/codex-temporal branch of the codex fork
codex-core = { git = "https://github.com/mfateev/codex.git", branch = "task/codex-temporal" }
codex-feedback = { git = "https://github.com/mfateev/codex.git", branch = "task/codex-temporal" }
codex-protocol = { git = "https://github.com/mfateev/codex.git", branch = "task/codex-temporal" }
codex-otel = { git = "https://github.com/mfateev/codex.git", branch = "task/codex-temporal" }
codex-tui = { git = "https://github.com/mfateev/codex.git", branch = "task/codex-temporal" }
codex-shell-command = { git = "https://github.com/mfateev/codex.git", branch = "task/codex-temporal" }
codex-apply-patch = { git = "https://github.com/mfateev/codex.git", branch = "task/codex-temporal" }
codex-rmcp-client = { git = "https://github.com/mfateev/codex.git", branch = "task/codex-temporal" }
codex-features = { git = "https://github.com/mfateev/codex.git", branch = "task/codex-temporal" }
codex-git-utils = { git = "https://github.com/mfateev/codex.git", branch = "task/codex-temporal" }
codex-utils-absolute-path = { git = "https://github.com/mfateev/codex.git", branch = "task/codex-temporal" }
rmcp = { version = "0.15.0", default-features = false, features = ["base64", "macros", "schemars"] }
# Patches required by codex-core/codex-tui transitive dependencies
[patch.crates-io]
crossterm = { git = "https://github.com/nornagon/crossterm", branch = "nornagon/color-query" }
ratatui = { git = "https://github.com/nornagon/ratatui", branch = "nornagon-v0.29.0-patch" }
tokio-tungstenite = { git = "https://github.com/openai-oss-forks/tokio-tungstenite", rev = "132f5b39c862e3a970f731d709608b3e6276d5f6" }
tungstenite = { git = "https://github.com/openai-oss-forks/tungstenite-rs", rev = "9200079d3b54a1ff51072e24d81fd354f085156f" }
[patch."ssh://git@github.com/openai-oss-forks/tungstenite-rs.git"]
tungstenite = { git = "https://github.com/openai-oss-forks/tungstenite-rs", rev = "9200079d3b54a1ff51072e24d81fd354f085156f" }
[dev-dependencies]
temporalio-sdk-core = { git = "https://github.com/temporalio/sdk-core.git", branch = "master", features = ["ephemeral-server"] }
codex-utils-pty = { git = "https://github.com/mfateev/codex.git", branch = "task/codex-temporal" }
crossterm = { version = "0.28", features = ["event-stream"] }
ratatui = { version = "0.29", features = ["unstable-widget-ref"] }
tempfile = "3"
serial_test = "3"
[[bin]]
name = "codex-temporal-worker"
path = "src/bin/worker.rs"
[[bin]]
name = "codex-temporal-client"
path = "src/bin/client.rs"
[[bin]]
name = "codex-temporal-tui"
path = "src/bin/tui.rs"