sensorial-systems / ligen

Apache License 2.0
19 stars 3 forks source link

Temporary FFI project naming conflict #81

Closed notdanilo closed 1 year ago

notdanilo commented 3 years ago

Say the project has the following structure:

The ffi temporary project strategy is to include everything in the module, but it will create a conflict:

pub use counter::*;
pub use counter::counter::*; // ambiguity because counter::counter is being used
pub use counter::other_mod::*; // ambiguity
notdanilo commented 1 year ago

We are using absolute paths.