aboutsummaryrefslogtreecommitdiff
path: root/challenge-285/ppentchev/rust/src/lib.rs
blob: 5b5e0768b0495bdb6640aad26fa1c0e65d6d0a9a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// SPDX-FileCopyrightText: Peter Pentchev <roam@ringlet.net>
// SPDX-License-Identifier: BSD-2-Clause

#![deny(missing_docs)]
#![deny(clippy::missing_docs_in_private_items)]
//! Solve the tasks in Perl weekly challenge 285.

#![allow(clippy::needless_borrowed_reference)]

pub mod change;
pub mod defs;
pub mod routes;

#[cfg(test)]
mod tests;