Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T03:59:05.538Z Public web read
NIP-34 coordinate30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omega
MaintainersHidden in public view
References2 branches · 1 tag
Read-only clonegit clone https://openagents.com/git/tenant.openagents/omega.git
Browse files

Cargo.toml

55 lines · 1.4 KB · toml
1[package]
2name = "gpui_wgpu"
3version = "0.1.0"
4edition.workspace = true
5publish.workspace = true
6license = "Apache-2.0"
7
8[lints]
9workspace = true
10
11[lib]
12path = "src/gpui_wgpu.rs"
13
14[features]
15default = []
16font-kit = ["dep:font-kit"]
17
18[dependencies]
19gpui.workspace = true
20anyhow.workspace = true
21bytemuck = "1"
22collections.workspace = true
23cosmic-text = "0.19.0"
24etagere.workspace = true
25itertools.workspace = true
26log.workspace = true
27parking_lot.workspace = true
28profiling.workspace = true
29raw-window-handle.workspace = true
30smallvec.workspace = true
31swash.workspace = true
32unicode-segmentation.workspace = true
33gpui_util.workspace = true
34wgpu.workspace = true
35
36# Optional: only needed on platforms with multiple font sources (e.g. Linux)
37# WARNING: If you change this, you must also publish a new version of zed-font-kit to crates.io
38font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "94b0f28166665e8fd2f53ff6d268a14955c82269", package = "zed-font-kit", version = "0.14.1-zed", optional = true }
39
40[target.'cfg(not(target_family = "wasm"))'.dependencies]
41pollster.workspace = true
42
43[target.'cfg(target_family = "wasm")'.dependencies]
44wasm-bindgen.workspace = true
45wasm-bindgen-futures = "0.4"
46web-sys = { version = "0.3", features = ["HtmlCanvasElement"] }
47js-sys = "0.3"
48
49[dev-dependencies]
50criterion.workspace = true
51
52[[bench]]
53name = "layout_line"
54harness = false
55
Served at tenant.openagents/omega Member data and write actions are omitted.