diff options
| author | Mohammad Sajid Anwar <Mohammad.Anwar@yahoo.com> | 2024-09-07 15:38:13 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-09-07 15:38:13 +0100 |
| commit | 7274cf7d2b1309fe0869d0eabc06dcb42692f927 (patch) | |
| tree | 5feabaf9adb775a9ab5d92f8488fea51205c3313 /challenge-285/ppentchev/rust/src/lib.rs | |
| parent | 68a17c678c82f707241cbf65dd70d972f9be50af (diff) | |
| parent | 49cf08a0df734aa6855f6fe700bf5b40e0ed8004 (diff) | |
| download | perlweeklychallenge-club-7274cf7d2b1309fe0869d0eabc06dcb42692f927.tar.gz perlweeklychallenge-club-7274cf7d2b1309fe0869d0eabc06dcb42692f927.tar.bz2 perlweeklychallenge-club-7274cf7d2b1309fe0869d0eabc06dcb42692f927.zip | |
Merge pull request #10782 from ppentchev/pp-285-rust
Add Peter Pentchev's Rust solution to 285.
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; |
