Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T04:08:53.365Z 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

76 lines · 1.6 KB · toml
1[package]
2name = "gpui_web"
3version = "0.1.0"
4publish.workspace = true
5edition.workspace = true
6license = "Apache-2.0"
7autoexamples = false
8
9[lints]
10workspace = true
11
12[features]
13default = ["multithreaded"]
14multithreaded = ["dep:wasm_thread"]
15
16[lib]
17path = "src/gpui_web.rs"
18
19[target.'cfg(target_family = "wasm")'.dependencies]
20gpui.workspace = true
21parking_lot = { workspace = true, features = ["nightly"] }
22gpui_wgpu.workspace = true
23http_client.workspace = true
24anyhow.workspace = true
25futures.workspace = true
26log.workspace = true
27smallvec.workspace = true
28uuid.workspace = true
29wasm-bindgen.workspace = true
30wasm-bindgen-futures = "0.4"
31web-time.workspace = true
32console_error_panic_hook = "0.1.7"
33js-sys = "0.3"
34raw-window-handle.workspace = true
35wasm_thread = { version = "0.3", features = ["es_modules"], optional = true }
36web-sys = { version = "0.3", features = [
37    "console",
38    "Clipboard",
39    "ClipboardEvent",
40    "CompositionEvent",
41    "CssStyleDeclaration",
42    "DataTransfer",
43    "Document",
44    "DomRect",
45    "DragEvent",
46    "Element",
47    "EventTarget",
48    "File",
49    "FileList",
50    "HtmlCanvasElement",
51    "HtmlElement",
52    "HtmlInputElement",
53    "KeyboardEvent",
54    "MediaQueryList",
55    "MediaQueryListEvent",
56    "MouseEvent",
57    "Navigator",
58    "PointerEvent",
59    "ResizeObserver",
60    "ResizeObserverBoxOptions",
61    "ResizeObserverEntry",
62    "ResizeObserverSize",
63    "ResizeObserverOptions",
64    "Screen",
65    "Storage",
66    "VisualViewport",
67    "Headers",
68    "Request",
69    "RequestCredentials",
70    "RequestInit",
71    "RequestRedirect",
72    "Response",
73    "WheelEvent",
74    "Window",
75] }
76
Served at tenant.openagents/omega Member data and write actions are omitted.