aboutsummaryrefslogtreecommitdiff
path: root/crates/whirl_common/src/lib.rs
blob: 05a0e0c69e000af8412ded4a1d3dc857b32e2e5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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"]

pub mod log;
pub mod sort;
pub mod system;