
**This PR also bumps wasmtime version from 0.38 to 2.0 as 0.38 does not build with Rust 1.75**. I did not test the plugin runtime as (AFAIK) we intend to deprecate it; also, wasmtime's most recent version is 16.0, so it'd make sense to bump the version at some point anyways. I did not bump the version to 16.0 straight away as that'd require code changes in `plugin_runtime`. Release Notes: - N/A
33 lines
887 B
Rust
33 lines
887 B
Rust
//! # UI – Zed UI Primitives & Components
|
||
//!
|
||
//! This crate provides a set of UI primitives and components that are used to build all of the elements in Zed's UI.
|
||
//!
|
||
//! ## Work in Progress
|
||
//!
|
||
//! This crate is still a work in progress. The initial primitives and components are built for getting all the UI on the screen,
|
||
//! much of the state and functionality is mocked or hard codeded, and performance has not been a focus.
|
||
//!
|
||
|
||
#![doc = include_str!("../docs/hello-world.md")]
|
||
#![doc = include_str!("../docs/building-ui.md")]
|
||
#![doc = include_str!("../docs/todo.md")]
|
||
|
||
mod clickable;
|
||
mod components;
|
||
mod disableable;
|
||
mod fixed;
|
||
pub mod prelude;
|
||
mod selectable;
|
||
mod styled_ext;
|
||
mod styles;
|
||
pub mod utils;
|
||
mod visible_on_hover;
|
||
|
||
pub use clickable::*;
|
||
pub use components::*;
|
||
pub use disableable::*;
|
||
pub use fixed::*;
|
||
pub use prelude::*;
|
||
|
||
pub use styled_ext::*;
|
||
pub use styles::*;
|