Hi and thanks for this crate I've been using it for years and always enjoyed its simplicity.
This morning I refactored one of my project to split the monolith into a workspace with types and cli for future reusability.
I renamed types into inkanim-types and use it as a dependency for cli (which is the main crate so it's officially called inkanim).
To avoid having to rename all the imports I specified it this way in the cli crate:
[dependencies]
inkanim = { path = "../types", features = ["clap"], package = "inkanim-types" }
Only quirk, now katyo/publish-crates@v2 does not recognize it as a workspace member, while it actually is:
Thanks in advance for taking the time to read me.
Hi and thanks for this crate I've been using it for years and always enjoyed its simplicity.
This morning I refactored one of my project to split the monolith into a workspace with
typesandclifor future reusability.I renamed
typesintoinkanim-typesand use it as a dependency forcli(which is the main crate so it's officially calledinkanim).To avoid having to rename all the imports I specified it this way in the
clicrate:Only quirk, now
katyo/publish-crates@v2does not recognize it as a workspace member, while it actually is:Thanks in advance for taking the time to read me.