keyset 0.1.1

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
18
#![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 kle;
mod layout;
mod profile;
mod utils;

pub use drawing::{Drawing, DrawingOptions, ToSvg};
pub use font::Font;
pub use kle::FromKle;
pub use layout::Layout;
pub use profile::Profile;