A community fork of GPUI, Zed's GPU-accelerated UI framework.
[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| {/*...*/});
}# 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| {/*...*/});
}