otter_base/
lib.rs

1// Copyright 2020-2021 Ian Jackson and contributors to Otter
2// SPDX-License-Identifier: AGPL-3.0-or-later
3// There is NO WARRANTY.
4
5//! Otter game system (part thereeof)
6//!
7//! <https://www.chiark.greenend.org.uk/~ianmdlvl/otter/docs/README.html>
8//!
9//! This crate is intended for use only by other parts of Otter.
10
11#![allow(clippy::redundant_closure_call)]
12#![allow(clippy::writeln_empty_string)]
13
14pub mod crates;
15pub mod imports;
16pub mod prelude;
17
18pub mod geometry;
19pub mod html;
20pub mod zcoord;
21pub mod misc;