cognitive_aesthetics/
lib.rs

1// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0. If a copy of
2// the MPL was not distributed with this file, You can obtain one at http://mozilla.org/MPL/2.0/
3
4//! This crate provides aesthetic additions like setting background or default cursor theme.
5
6extern crate chrono;
7extern crate image;
8extern crate font_loader;
9extern crate rusttype;
10
11#[macro_use]
12extern crate timber;
13#[macro_use]
14extern crate cognitive_qualia as qualia;
15
16mod cursor;
17pub use cursor::Cursor;
18
19mod background;
20pub use background::Background;
21
22mod panels;
23pub use panels::PanelManager;
24
25mod aesthetics;
26pub use aesthetics::Aesthetics;