diff options
Diffstat (limited to 'challenge-285/ppentchev/rust/src/lib.rs')
| -rw-r--r-- | challenge-285/ppentchev/rust/src/lib.rs | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/challenge-285/ppentchev/rust/src/lib.rs b/challenge-285/ppentchev/rust/src/lib.rs new file mode 100644 index 0000000000..5b5e0768b0 --- /dev/null +++ b/challenge-285/ppentchev/rust/src/lib.rs @@ -0,0 +1,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; |
