Skip to main content

gitkraft_gui/
lib.rs

1//! GitKraft GUI — Iced 0.13.1 desktop frontend for the GitKraft Git IDE.
2//!
3//! This crate provides the graphical user interface built on top of
4//! [`gitkraft_core`] using the [Iced](https://iced.rs) toolkit.
5
6#[macro_use]
7mod macros;
8
9pub mod features;
10pub mod icons;
11pub mod message;
12pub mod state;
13pub mod theme;
14pub mod update;
15pub mod view;
16pub mod view_utils;
17pub mod widgets;
18
19pub use message::Message;
20pub use state::{GitKraft, RepoTab};