Skip to repository content52 lines · 1.2 KB · toml
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T01:43:37.052Z 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 = "component_preview"
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/component_preview.rs"
13
14[features]
15default = []
16test-support = ["db/test-support"]
17
18[dependencies]
19anyhow.workspace = true
20client.workspace = true
21collections.workspace = true
22command_palette_hooks.workspace = true
23component.workspace = true
24db.workspace = true
25fs.workspace = true
26gpui.workspace = true
27language.workspace = true
28log.workspace = true
29node_runtime.workspace = true
30notifications.workspace = true
31project.workspace = true
32release_channel.workspace = true
33reqwest_client.workspace = true
34session.workspace = true
35settings.workspace = true
36theme.workspace = true
37theme_settings.workspace = true
38ui.workspace = true
39ui_input.workspace = true
40uuid.workspace = true
41workspace.workspace = true
42
43[dev-dependencies]
44assets.workspace = true
45editor.workspace = true
46env_logger.workspace = true
47gpui_platform = { workspace = true, features = ["screen-capture", "font-kit", "wayland", "x11"] }
48
49[[example]]
50name = "component_preview"
51path = "examples/component_preview.rs"
52