keyset 0.2.0

A Rust tool to create pretty keyset layout diagrams using correct fonts and icons.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![warn(clippy::all, clippy::pedantic, clippy::cargo)]
#![allow(clippy::cast_precision_loss, clippy::module_name_repetitions)]
// TODO add docs and don't allow these
#![allow(missing_docs, clippy::missing_errors_doc, dead_code)]

mod drawing;
mod error;
mod font;
mod key;
pub mod kle;
mod profile;
mod utils;

pub use drawing::DrawingOptions;
pub use font::Font;
pub use key::Key;
pub use profile::Profile;