anki/rslib/src/lib.rs

23 lines
438 B
Rust
Raw Normal View History

2020-01-10 12:00:48 +01:00
// Copyright: Ankitects Pty Ltd and contributors
// License: GNU AGPL, version 3 or later; http://www.gnu.org/licenses/agpl.html
2020-01-29 04:17:20 +01:00
#![deny(unused_must_use)]
2019-12-24 23:59:33 +01:00
mod backend_proto;
2019-12-23 05:42:14 +01:00
2020-02-04 11:07:28 +01:00
pub fn version() -> &'static str {
include_str!("../../meta/version").trim()
}
2019-12-24 23:59:33 +01:00
pub mod backend;
pub mod cloze;
pub mod err;
pub mod latex;
pub mod media;
pub mod sched;
pub mod template;
2020-01-10 12:04:52 +01:00
pub mod template_filters;
2020-01-10 12:01:23 +01:00
pub mod text;
pub mod time;
pub mod types;