mirror of
https://github.com/ankitects/anki.git
synced 2025-11-12 15:47:12 -05:00
Searches that require multiple deck or note type lookups won't perform very well at the moment - it either needs caching or to be split up at the DB level. Nothing tested yet.
32 lines
597 B
Rust
32 lines
597 B
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)]
|
|
|
|
mod backend_proto;
|
|
|
|
pub fn version() -> &'static str {
|
|
include_str!("../../meta/version").trim()
|
|
}
|
|
|
|
pub mod backend;
|
|
pub mod card;
|
|
pub mod cloze;
|
|
pub mod collection;
|
|
pub mod config;
|
|
pub mod decks;
|
|
pub mod err;
|
|
pub mod i18n;
|
|
pub mod latex;
|
|
pub mod log;
|
|
pub mod media;
|
|
pub mod notes;
|
|
pub mod notetypes;
|
|
pub mod sched;
|
|
pub mod search;
|
|
pub mod storage;
|
|
pub mod template;
|
|
pub mod template_filters;
|
|
pub mod text;
|
|
pub mod time;
|
|
pub mod types;
|