chore: allow unused_must_use (we didn't yet get around to fix that)

This commit is contained in:
Ellen Emilia Anna Zscheile 2025-02-10 11:13:55 +01:00
parent 3ffddefac8
commit 758677970a
1 changed files with 11 additions and 9 deletions

View File

@ -1,21 +1,23 @@
#![doc(
// SPDX-FileCopyrightText: 2024 Topola contributors
//
// SPDX-License-Identifier: MIT
html_favicon_url = "https://codeberg.org/topola/topola/raw/commit/e1b56875edf039aab9f41868826bcd3a92097133/assets/favicon.ico"
)]
#![doc(
html_logo_url = "https://codeberg.org/topola/topola/raw/commit/e1b56875edf039aab9f41868826bcd3a92097133/assets/logo.svg"
)]
#![cfg_attr(not(feature = "disable_contracts"), feature(try_blocks))]
//! [Topola](https://topola.dev) is a work-in-progress interactive
//! topological router in Rust.
//!
//! The project is funded by the [NLnet Foundation](https://nlnet.nl/) from
//! the [NGI0 Entrust](https://nlnet.nl/entrust/) fund.
#![doc(
html_favicon_url = "https://codeberg.org/topola/topola/raw/commit/e1b56875edf039aab9f41868826bcd3a92097133/assets/favicon.ico"
)]
#![doc(
html_logo_url = "https://codeberg.org/topola/topola/raw/commit/e1b56875edf039aab9f41868826bcd3a92097133/assets/logo.svg"
)]
#![cfg_attr(not(feature = "disable_contracts"), feature(try_blocks))]
// TODO: fix all occurences
#![allow(unused_must_use)]
pub mod graph;
#[macro_use]
pub mod drawing;