Skip to repository content60 lines · 1.8 KB · toml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T02:00:22.002Z 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 = "grammars"
3version = "0.1.0"
4edition = "2024"
5publish = false
6
7[lints]
8workspace = true
9
10[lib]
11path = "src/grammars.rs"
12
13[dependencies]
14language_core.workspace = true
15rust-embed.workspace = true
16anyhow.workspace = true
17toml.workspace = true
18
19tree-sitter = { workspace = true, optional = true }
20tree-sitter-bash = { workspace = true, optional = true }
21tree-sitter-c = { workspace = true, optional = true }
22tree-sitter-cpp = { workspace = true, optional = true }
23tree-sitter-css = { workspace = true, optional = true }
24tree-sitter-diff = { workspace = true, optional = true }
25tree-sitter-gitcommit = { workspace = true, optional = true }
26tree-sitter-go = { workspace = true, optional = true }
27tree-sitter-go-mod = { workspace = true, optional = true }
28tree-sitter-gowork = { workspace = true, optional = true }
29tree-sitter-jsdoc = { workspace = true, optional = true }
30tree-sitter-json = { workspace = true, optional = true }
31tree-sitter-md = { workspace = true, optional = true }
32tree-sitter-python = { workspace = true, optional = true }
33tree-sitter-regex = { workspace = true, optional = true }
34tree-sitter-rust = { workspace = true, optional = true }
35tree-sitter-typescript = { workspace = true, optional = true }
36tree-sitter-yaml = { workspace = true, optional = true }
37
38[features]
39load-grammars = [
40 "tree-sitter",
41 "tree-sitter-bash",
42 "tree-sitter-c",
43 "tree-sitter-cpp",
44 "tree-sitter-css",
45 "tree-sitter-diff",
46 "tree-sitter-gitcommit",
47 "tree-sitter-go",
48 "tree-sitter-go-mod",
49 "tree-sitter-gowork",
50 "tree-sitter-jsdoc",
51 "tree-sitter-json",
52 "tree-sitter-md",
53 "tree-sitter-python",
54 "tree-sitter-regex",
55 "tree-sitter-rust",
56 "tree-sitter-typescript",
57 "tree-sitter-yaml",
58]
59test-support = ["load-grammars", "tree-sitter/wasm"]
60