https://github.com/azurezee/gpuix
A community fork of GPUI, Zed's GPU-accelerated UI framework.
https://github.com/azurezee/gpuix
gpui rust zed
Last synced: 22 days ago
JSON representation
A community fork of GPUI, Zed's GPU-accelerated UI framework.
- Host: GitHub
- URL: https://github.com/azurezee/gpuix
- Owner: AzureZee
- License: apache-2.0
- Created: 2026-03-30T19:33:18.000Z (2 months ago)
- Default Branch: main
- Last Pushed: 2026-05-07T14:32:32.000Z (27 days ago)
- Last Synced: 2026-05-07T16:38:55.495Z (27 days ago)
- Topics: gpui, rust, zed
- Language: Rust
- Homepage:
- Size: 16.6 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# GPUIX
A community fork of [GPUI](https://gpui.rs), Zed's GPU-accelerated UI framework.
## Usage
### Use `gpui` and `gpui_platform`
```toml
[dependencies]
gpui = { git = "https://github.com/AzureZee/gpuix.git" }
gpui_platform = { git = "https://github.com/AzureZee/gpuix.git" }
```
```rs
use gpui::{import};
use gpui_platform::application;
fn main() {
application().run(|cx: &mut App| {/*...*/});
}
```
### Or use `gpuix`
```toml
# you can do this
[dependencies]
gpui = { git = "https://github.com/AzureZee/gpuix.git", package = "gpuix" }
# or this
[dependencies]
gpuix = { git = "https://github.com/AzureZee/gpuix.git" }
```
```rs
use gpui::{import,application};
// or this
// use gpuix::{import,application};
fn main() {
application().run(|cx: &mut App| {/*...*/});
}
```