mirror of
https://github.com/ankitects/anki.git
synced 2025-09-18 14:02:21 -04:00

* Anki: Replace lazy_static with once_cell Unify to once_cell, lazy_static's replacement. The latter in unmaintained. * Anki: Replace once_cell with stabilized LazyCell / LazyLock as far as possible Since 1.80: https://github.com/rust-lang/rust/issues/109736 and https://github.com/rust-lang/rust/pull/98165 Non-Thread-Safe Lazy → std::cell::LazyCell https://doc.rust-lang.org/nightly/std/cell/struct.LazyCell.html Thread-safe SyncLazy → std::sync::LazyLock https://doc.rust-lang.org/nightly/std/sync/struct.LazyLock.html The compiler accepted LazyCell only in minilints. The final use in rslib/src/log.rs couldn't be replaced since get_or_try_init has not yet been standardized: https://github.com/rust-lang/rust/issues/109737 * Declare correct MSRV (dae) Some of our deps require newer Rust versions, so this was misleading. Updating the MSRV also allows us to use .inspect() on Option now
58 lines
1.1 KiB
Rust
58 lines
1.1 KiB
Rust
// Copyright: Ankitects Pty Ltd and contributors
|
|
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
|
|
|
|
#![deny(unused_must_use)]
|
|
|
|
pub mod adding;
|
|
pub(crate) mod ankidroid;
|
|
pub mod ankihub;
|
|
pub mod backend;
|
|
pub mod browser_table;
|
|
pub mod card;
|
|
pub mod card_rendering;
|
|
pub mod cloze;
|
|
pub mod collection;
|
|
pub mod config;
|
|
pub mod dbcheck;
|
|
pub mod deckconfig;
|
|
pub mod decks;
|
|
pub mod error;
|
|
pub mod findreplace;
|
|
pub mod i18n;
|
|
pub mod image_occlusion;
|
|
pub mod import_export;
|
|
pub mod latex;
|
|
pub mod links;
|
|
pub mod log;
|
|
mod markdown;
|
|
pub mod media;
|
|
pub mod notes;
|
|
pub mod notetype;
|
|
pub mod ops;
|
|
mod preferences;
|
|
pub mod prelude;
|
|
mod progress;
|
|
pub mod revlog;
|
|
pub mod scheduler;
|
|
pub mod search;
|
|
pub mod serde;
|
|
pub mod services;
|
|
mod stats;
|
|
pub mod storage;
|
|
pub mod sync;
|
|
pub mod tags;
|
|
pub mod template;
|
|
pub mod template_filters;
|
|
pub(crate) mod tests;
|
|
pub mod text;
|
|
pub mod timestamp;
|
|
mod typeanswer;
|
|
pub mod types;
|
|
pub mod undo;
|
|
pub mod version;
|
|
|
|
use std::env;
|
|
use std::sync::LazyLock;
|
|
|
|
pub(crate) static PYTHON_UNIT_TESTS: LazyLock<bool> =
|
|
LazyLock::new(|| env::var("ANKI_TEST_MODE").is_ok());
|