Skip to main content

netrunner_gui/
lib.rs

1//! # netrunner (GUI)
2//!
3//! A Zed **GPUI**-powered desktop front-end for netrunner. All network logic
4//! lives in [`netrunner_core`]; this crate renders live download/upload
5//! bandwidth charts while a speed test runs.
6//!
7//! - [`engine`] — bridges the Tokio-based core engine to GPUI's executor
8//! - [`app`] — application state and progress-event handling
9//! - [`view`] — the GPUI render implementation (charts, metrics)
10//! - [`theme`] — the cyberpunk colour palette
11
12pub mod app;
13pub mod engine;
14pub mod theme;
15pub mod view;
16
17pub use app::SpeedApp;