netrunner 2.0.4

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

pub mod app;
pub mod engine;
pub mod theme;
pub mod view;

pub use app::SpeedApp;