Skip to repository content94 lines · 2.4 KB · toml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T01:45:21.624Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
Cargo.toml
1[package]
2name = "edit_prediction_cli"
3version = "0.1.0"
4edition.workspace = true
5publish.workspace = true
6license = "GPL-3.0-or-later"
7
8[lints]
9workspace = true
10
11[lib]
12path = "src/lib.rs"
13
14[[bin]]
15name = "ep"
16path = "src/main.rs"
17
18[dependencies]
19anyhow.workspace = true
20anthropic.workspace = true
21http_client.workspace = true
22chrono.workspace = true
23clap = "4"
24client.workspace = true
25cloud_llm_client = { workspace = true, features = ["predict-edits"] }
26collections.workspace = true
27db.workspace = true
28debug_adapter_extension.workspace = true
29dirs.workspace = true
30extension.workspace = true
31fs.workspace = true
32futures.workspace = true
33gpui.workspace = true
34gpui_platform.workspace = true
35gpui_tokio.workspace = true
36indoc.workspace = true
37language.workspace = true
38language_extension.workspace = true
39language_model.workspace = true
40language_models.workspace = true
41languages = { workspace = true, features = ["load-grammars"] }
42libc.workspace = true
43log.workspace = true
44node_runtime.workspace = true
45open_ai.workspace = true
46
47paths.workspace = true
48project.workspace = true
49prompt_store.workspace = true
50release_channel.workspace = true
51reqwest_client.workspace = true
52serde.workspace = true
53serde_json.workspace = true
54settings.workspace = true
55shellexpand.workspace = true
56smol.workspace = true
57sqlez.workspace = true
58strum.workspace = true
59sqlez_macros.workspace = true
60terminal_view.workspace = true
61util.workspace = true
62watch.workspace = true
63edit_prediction = { workspace = true, features = ["cli-support"] }
64edit_prediction_context.workspace = true
65edit_prediction_metrics = { workspace = true, features = ["tree-sitter"] }
66telemetry_events.workspace = true
67wasmtime.workspace = true
68zeta_prompt.workspace = true
69rand.workspace = true
70similar = "2.7.0"
71flate2 = "1.1.8"
72toml.workspace = true
73rust-embed.workspace = true
74gaoya = "0.2.0"
75
76# Wasmtime is included as a dependency in order to enable the same
77# features that are enabled in Zed.
78#
79# If we don't enable these features we get crashes when creating
80# a Tree-sitter WasmStore.
81[features]
82dynamic_prompts = []
83
84[package.metadata.cargo-machete]
85ignored = ["wasmtime"]
86
87[dev-dependencies]
88gpui = { workspace = true, features = ["test-support"] }
89indoc.workspace = true
90pretty_assertions.workspace = true
91project = { workspace = true, features = ["test-support"] }
92tempfile.workspace = true
93workspace = { workspace = true, features = ["test-support"] }
94