blob: 662776aba791be873c18bd1fa1adcba3babaa546 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
// Copyleft (ɔ) 2021-2021 The Whirlsplash Collective
// SPDX-License-Identifier: GPL-3.0-only
#![feature(
type_ascription,
hash_set_entry,
type_name_of_val,
decl_macro,
proc_macro_hygiene
)]
#![warn(rust_2018_idioms)]
#![recursion_limit = "128"]
#[macro_use]
extern crate log;
#[macro_use]
extern crate rocket;
#[macro_use]
extern crate diesel;
#[macro_use]
extern crate serde_derive;
pub mod cli;
pub mod config;
pub mod prompt;
pub mod subs;
pub mod api;
pub mod db;
pub mod server;
pub mod utils;
|