Initial work on outlining the dynamic side of the library.

This commit is contained in:
2021-01-31 17:31:22 +01:00
parent 2a08fb2645
commit c194c5d209
24 changed files with 321 additions and 39 deletions

View File

@@ -1,10 +1,12 @@
// The too many arguments is annoying, especially for when we create constructors, disable.
#![allow(clippy::too_many_arguments, clippy::needless_range_loop)]
#![feature(nll)]
#![feature(in_band_lifetimes)]
#[macro_use]
extern crate maplit;
pub mod defines;
pub mod dynamic_data;
pub mod static_data;
pub mod utils;