# rust_gpui **Repository Path**: DengLibin/rust_gpui ## Basic Information - **Project Name**: rust_gpui - **Description**: gpui库rust_gpui - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-02-02 - **Last Updated**: 2026-03-16 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README 示例: https://github.com/zed-industries/zed/tree/main/crates/gpui/examples gpui_component: https://longbridge.github.io/gpui-component/docs/components/ 使用gpui-ce版本: 下载源码(https://github.com/gpui-ce/gpui-ce),修改gpui-ce的版本号和包名(改成和gpui一样),通过path引入依赖 gpui-component 依赖的gpui, gpui-ce在api上有点变化,造成编译报错: ```sh C:\Users\mdjro\.cargo\registry\src\mirrors.aliyun.com-0671735e7cc7f5e7\gpui-component-0.5.0\src\table\state.rs:1390:43 | 1390 | ... .track_scroll(self.vertical_scroll_handle.clone()) | ------------ ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ expected `&UniformListScrollHandle`, found `UniformListScrollHandle` ``` 原来传的对象,现在传引用,改下就行