convert to workspace and update justfile

This commit is contained in:
🪞👃🪞 2025-01-09 22:19:28 +01:00
parent c3de403645
commit 01835c8077
19 changed files with 268 additions and 242 deletions

View file

@ -30,8 +30,8 @@ mod edn_token; pub use self::edn_token::*;
}
#[cfg(test)] #[test] fn test_edn_layout () -> Result<(), ParseError> {
EdnItem::<String>::read_all(include_str!("../examples/edn01.edn"))?;
EdnItem::<String>::read_all(include_str!("../examples/edn02.edn"))?;
EdnItem::<String>::read_all(include_str!("../tek/examples/edn01.edn"))?;
EdnItem::<String>::read_all(include_str!("../tek/examples/edn02.edn"))?;
//panic!("{layout:?}");
//let content = <dyn EdnViewData<::tek_engine::tui::Tui>>::from(&layout);
Ok(())