lift the post-processing tools (viewer, csv, decimate) into their own crate

- these tools shouldn't need access to coremem internals.
- lifting them out reduces some dependencies in coremem-the-library.
- separation allows faster iteration in the coremem library while
  temporarily breaking the post-processing tools (specifically,
  those tools could take deps on a specific coremem version and thereby
  we split the update process into two, smaller steps).
This commit is contained in:
2022-07-17 15:47:39 -07:00
parent 89be8bf8dd
commit a2d35782a1
10 changed files with 41 additions and 18 deletions

View File

@@ -11,7 +11,6 @@ pub mod driver;
pub mod geom;
pub mod mat;
pub mod meas;
pub mod post;
pub mod real;
pub mod render;
pub mod sim;