Skip to main content

pixelcoords_core/
lib.rs

1//! Platform-free core for pixelcoords: geometry, selections, session schema,
2//! point verdicts, code emitters, template relocation, hotkey grammar,
3//! config, bitmap font, and CPU rasterizer.
4//!
5//! The crate README is included below, which makes every example on the
6//! crates.io page a compiled doctest — documentation that cannot rot
7//! without failing CI.
8#![doc = include_str!("../README.md")]
9#![forbid(unsafe_code)]
10
11pub mod config;
12pub mod draw;
13pub mod emit;
14pub mod font;
15pub mod geometry;
16pub mod hotkeys;
17pub mod locate;
18pub mod matcher;
19pub mod selection;
20pub mod session;
21pub mod strings;
22pub mod verdict;