Move filters into main.rs for SPEED

Using a macro from the warp github to balance the OR filter tree which sped up compile times by 10x.
This commit is contained in:
2020-10-20 21:50:01 -04:00
parent 0dc4247224
commit 3f124ce439
6 changed files with 336 additions and 419 deletions

View File

@@ -7,7 +7,6 @@ use tracing::instrument;
use super::ListParams;
use super::{Model, UpdateableModel};
use crate::models::InteriorRefList;
use crate::problem::forbidden_permission;
#[derive(Debug, Serialize, Deserialize, Clone)]