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 diff;
13pub mod draw;
14pub mod duration;
15pub mod emit;
16pub mod font;
17pub mod geometry;
18pub mod hotkeys;
19pub mod locate;
20pub mod matcher;
21pub mod points;
22pub mod report;
23pub mod resolve;
24pub mod selection;
25pub mod session;
26pub mod space;
27pub mod strings;
28pub mod verdict;
29pub mod wait;