Skip to content

AzureZee/gpuix

Repository files navigation

GPUIX

A community fork of GPUI, Zed's GPU-accelerated UI framework.

Usage

Use gpui and gpui_platform

[dependencies]
gpui = { git = "https://github.com/AzureZee/gpuix.git" }
gpui_platform = { git = "https://github.com/AzureZee/gpuix.git" }
use gpui::{import};
use gpui_platform::application;

fn main() {
  application().run(|cx: &mut App| {/*...*/});
}

Or use gpuix

# 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" }
use gpui::{import,application};
// or this
// use gpuix::{import,application};

fn main() {
  application().run(|cx: &mut App| {/*...*/});
}

About

A community fork of GPUI, Zed's GPU-accelerated UI framework.

Resources

License

Stars

Watchers

Forks

Contributors