chiark / gitweb /
changelog: document further make-release changes
[otter.git] / 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
14 pub mod crates;
15 pub mod imports;
16 pub mod prelude;
17
18 pub mod geometry;
19 pub mod html;
20 pub mod zcoord;
21 pub mod misc;