Skip to repository content

tenant.openagents/omega

No repository description is available.

OpenAgents Git authority 2026-07-28T06:18:09.413Z 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

80 lines · 2.5 KB · toml
1[package]
2name = "gpui_macos"
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_macos.rs"
13
14[features]
15default = ["gpui/default"]
16test-support = ["gpui/test-support"]
17runtime_shaders = []
18font-kit = ["dep:font-kit"]
19screen-capture = ["gpui/screen-capture"]
20
21[dependencies]
22gpui.workspace = true
23
24[target.'cfg(target_os = "macos")'.dependencies]
25accesskit.workspace = true
26accesskit_macos.workspace = true
27anyhow.workspace = true
28async-task.workspace = true
29block.workspace = true
30block2.workspace = true
31cocoa.workspace = true
32collections.workspace = true
33core-foundation.workspace = true
34core-foundation-sys.workspace = true
35core-graphics.workspace = true
36core-text.workspace = true
37core-video.workspace = true
38ctor.workspace = true
39derive_more.workspace = true
40dispatch2 = "0.3.1"
41etagere.workspace = true
42# WARNING: If you change this, you must also publish a new version of zed-font-kit to crates.io
43font-kit = { git = "https://github.com/zed-industries/font-kit", rev = "94b0f28166665e8fd2f53ff6d268a14955c82269", package = "zed-font-kit", version = "0.14.1-zed", optional = true }
44foreign-types.workspace = true
45futures.workspace = true
46gpui_util.workspace = true
47image.workspace = true
48itertools.workspace = true
49libc.workspace = true
50log.workspace = true
51mach2.workspace = true
52media.workspace = true
53metal.workspace = true
54objc.workspace = true
55objc2.workspace = true
56objc2-app-kit.workspace = true
57objc2-foundation.workspace = true
58objc2-user-notifications.workspace = true
59parking_lot.workspace = true
60pathfinder_geometry.workspace = true
61raw-window-handle.workspace = true
62semver.workspace = true
63smallvec.workspace = true
64strum.workspace = true
65uuid.workspace = true
66
67[target.'cfg(target_os = "macos")'.build-dependencies]
68cbindgen.workspace = true
69gpui.workspace = true
70
71# When this crate is itself being tested (cargo test -p gpui_macos), its own
72# cfg(test) flag enables impls of test-only traits like PlatformHeadlessRenderer
73# and PlatformWindow::render_to_image. Those traits/methods only exist in gpui
74# when gpui's `test-support` feature is on, so we have to turn that feature on
75# as a dev-dependency. The `cfg(test)` flag of a dependent crate doesn't
76# propagate to its dependencies, but dev-dependencies do, so this is the
77# correct way to enable the feature exactly when needed.
78[target.'cfg(target_os = "macos")'.dev-dependencies]
79gpui = { workspace = true, features = ["test-support"] }
80
Served at tenant.openagents/omega Member data and write actions are omitted.