tilr/lib.rs
1//! Build a mosaic of a particular image out of a set of smaller images.
2
3// tilr - A program to build an image from a set of image 'tiles'.
4// Copyright (C) 2023 Charles German <5donuts@pm.me>
5//
6// This program is free software: you can redistribute it and/or modify
7// it under the terms of the GNU General Public License as published by
8// the Free Software Foundation, either version 3 of the License, or
9// (at your option) any later version.
10// This program is distributed in the hope that it will be useful,
11// but WITHOUT ANY WARRANTY; without even the implied warranty of
12// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13// GNU General Public License for more details.
14//
15// You should have received a copy of the GNU General Public License
16// along with this program. If not, see <https://www.gnu.org/licenses/>.
17
18#![warn(
19 missing_docs,
20 rust_2018_idioms,
21 missing_debug_implementations,
22 broken_intra_doc_links
23)]
24
25mod mosaic;
26mod tiles;
27mod utils;
28
29pub use mosaic::Mosaic;
30pub use utils::load_tiles;