forked from openai/codex
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCargo.toml
More file actions
72 lines (69 loc) · 2.18 KB
/
Copy pathCargo.toml
File metadata and controls
72 lines (69 loc) · 2.18 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
[workspace]
resolver = "2"
exclude = [
"codex-rs", # Vendored Codex/Codex Rust workspace (separate root)
"helios-rs", # Vendored helios-rs workspace (separate root)
"crates/harness_pyo3", # Excluded: path dep `phenotype-shared` is broken (should be `phenoShared`); fix before re-including
"target",
]
members = [
# Core harness (already in workspace)
"crates/harness_queue",
"crates/harness_rollback",
"crates/harness_runner",
"crates/harness_scaling",
"crates/harness_schema",
"crates/harness_spec",
"crates/harness_teammates",
"crates/harness_utils",
"crates/harness_verify",
# Additional harness crates present in the repo
"crates/arch_test",
"crates/harness_cache",
"crates/harness_checkpoint",
"crates/harness_discoverer",
"crates/harness_elicitation",
"crates/harness_interfaces",
"crates/harness_normalizer",
"crates/harness_orchestrator",
"crates/pheno-plugin",
"crates/plugin-arch",
# Centralised configuration
"crates/helios_config",
# KLA absorbed (L5-200): Playwright-for-CLI recorder
"crates/harness_recorder",
]
[workspace.package]
version = "0.2.1"
edition = "2021"
rust-version = "1.75"
license = "MIT OR Apache-2.0"
repository = "https://github.com/KooshaPari/HeliosCLI"
description = "HeliosCLI - Phenotype harness and CLI"
authors = ["kooshapari"]
[workspace.dependencies]
# Core
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
serde_yaml = "0.9"
thiserror = "1.0"
anyhow = "1"
tokio = { version = "1.0", features = ["full"] }
async-trait = "0.1"
chrono = { version = "0.4", features = ["serde"] }
uuid = { version = "1.0", features = ["v4", "serde"] }
tracing = "0.1"
tracing-subscriber = { version = "0.3", features = ["env-filter"] }
regex = "1.10"
tempfile = "3.10"
walkdir = "2.4"
proptest = "1.4"
rust_decimal = { version = "1.33", features = ["serde"] }
pyo3 = { version = "0.28", features = ["extension-module", "auto-initialize"] }
toml = "0.8"
# Release optimizations for M1 (moved from crates/harness_runner/Cargo.toml)
[profile.release]
opt-level = 3
lto = "thin"
codegen-units = 1
strip = true