Skip to repository content119 lines · 3.2 KB · toml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T02:56:20.444Z 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 = "language"
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/language.rs"
13doctest = false
14
15[features]
16test-support = [
17 "rand",
18 "collections/test-support",
19 "grammars",
20 "lsp/test-support",
21 "text/test-support",
22 "tree-sitter-rust",
23 "tree-sitter-python",
24 "tree-sitter-typescript",
25 "tree-sitter-json",
26 "tree-sitter-md",
27 "settings/test-support",
28 "util/test-support",
29]
30
31[dependencies]
32anyhow.workspace = true
33async-trait.workspace = true
34clock.workspace = true
35collections.workspace = true
36ec4rs.workspace = true
37encoding_rs.workspace = true
38fs.workspace = true
39futures.workspace = true
40futures-lite.workspace = true
41fuzzy_nucleo.workspace = true
42globset.workspace = true
43gpui.workspace = true
44http_client.workspace = true
45imara-diff.workspace = true
46language_core.workspace = true
47itertools.workspace = true
48log.workspace = true
49lsp.workspace = true
50parking_lot.workspace = true
51postage.workspace = true
52rand = { workspace = true, optional = true }
53regex.workspace = true
54rpc.workspace = true
55semver.workspace = true
56serde.workspace = true
57serde_json.workspace = true
58settings.workspace = true
59shellexpand.workspace = true
60smallvec.workspace = true
61streaming-iterator.workspace = true
62strsim.workspace = true
63sum_tree.workspace = true
64task.workspace = true
65text.workspace = true
66theme.workspace = true
67toml.workspace = true
68tracing.workspace = true
69grammars = { workspace = true, optional = true }
70tree-sitter-json = { workspace = true, optional = true }
71tree-sitter-md = { workspace = true, optional = true }
72tree-sitter-python = { workspace = true, optional = true }
73tree-sitter-rust = { workspace = true, optional = true }
74tree-sitter-typescript = { workspace = true, optional = true }
75tree-sitter = { workspace = true, features = ["wasm"] }
76unicase = "2.6"
77util.workspace = true
78watch.workspace = true
79zlog.workspace = true
80ztracing.workspace = true
81diffy = "0.4.2"
82
83[dev-dependencies]
84collections = { workspace = true, features = ["test-support"] }
85ctor.workspace = true
86grammars.workspace = true
87gpui = { workspace = true, features = ["test-support"] }
88indoc.workspace = true
89lsp = { workspace = true, features = ["test-support"] }
90pretty_assertions.workspace = true
91rand.workspace = true
92settings = { workspace = true, features = ["test-support"] }
93text = { workspace = true, features = ["test-support"] }
94http_client = { workspace = true, features = ["test-support"] }
95tree-sitter-elixir.workspace = true
96tree-sitter-embedded-template.workspace = true
97tree-sitter-heex.workspace = true
98tree-sitter-html.workspace = true
99tree-sitter-json.workspace = true
100tree-sitter-md.workspace = true
101tree-sitter-python.workspace = true
102tree-sitter-ruby.workspace = true
103tree-sitter-c.workspace = true
104tree-sitter-rust.workspace = true
105tree-sitter-typescript.workspace = true
106toml.workspace = true
107unindent.workspace = true
108util = { workspace = true, features = ["test-support"] }
109zlog.workspace = true
110criterion.workspace = true
111theme_settings.workspace = true
112
113[[bench]]
114name = "highlight_map"
115harness = false
116
117[package.metadata.cargo-machete]
118ignored = ["tracing"]
119