pib-viewer 0.9.2

A viewer for public governmental data served over OParl
1
2
3
4
5
6
7
8
9
10
11
# SPDX-FileCopyrightText: Politik im Blick developers
# SPDX-FileCopyrightText: Wolfgang Silbermayr <wolfgang@silbermayr.at>
#
# SPDX-License-Identifier: AGPL-3.0-or-later OR EUPL-1.2

await-holding-invalid-types = [
  "generational_box::GenerationalRef",
  { path = "generational_box::GenerationalRef", reason = "Reads should not be held over an await point. This will cause any writes to fail while the await is pending since the read borrow is still active." },
  "generational_box::GenerationalRefMut",
  { path = "generational_box::GenerationalRefMut", reason = "Write should not be held over an await point. This will cause any reads or writes to fail while the await is pending since the write borrow is still active." },
]