ComputerScienceHouse / altctrl

GDD Imagine 2020 altCTRL Death Panel
MIT License
2 stars 7 forks source link

Restructure crate to resemble typical multi-bin project #19

Closed nicholastmosher closed 4 years ago

nicholastmosher commented 4 years ago

All this does is move some files around.

From now on, consider anything belonging to lib.rs or anything that belongs to the module structure of the library (i.e. any module that can be found by following the pub mod path starting in lib.rs) as shared code. Any of the binaries can access the shared code just by using use altctrl e.g. with use altctrl::i2c::thing or use altctrl::gui::thing.

Future recommendations: