Skip to main content

cortex/
lib.rs

1// Copyright 2015-2025 Deyan Ginev. See the LICENSE
2// file at the top-level directory of this distribution.
3//
4// Licensed under the MIT license <LICENSE-MIT or http://opensource.org/licenses/MIT>.
5// This file may not be copied, modified, or distributed
6// except according to those terms.
7
8//! A general purpose processing framework for corpora of scientific documents
9
10#![doc(html_root_url = "https://dginev.github.io/CorTeX/")]
11#![doc(
12  html_logo_url = "https://raw.githubusercontent.com/dginev/CorTeX/main/public/img/logo-icon.png"
13)]
14#![deny(missing_docs)]
15#![recursion_limit = "256"]
16#![allow(clippy::implicit_hasher)]
17#[macro_use]
18extern crate diesel;
19#[macro_use]
20extern crate rocket;
21
22pub mod backend;
23pub mod bootstrap;
24pub mod concerns;
25pub mod config;
26pub mod dispatcher;
27pub mod frontend;
28pub mod helpers;
29pub mod importer;
30pub mod jobs;
31pub mod migrations;
32pub mod models;
33pub mod observability;
34pub mod reports;
35/// Auto-generated diesel schema for the backend DB
36pub mod schema;
37pub mod worker;