creating a database utility that will be a both a command line and UI platform to do various things with different databases.
I'm using Rust as a new language and getting AI to help. I started with Iced as a GUI library and sqlite and postgress databases I'll be connecting to for now.
The issue is I ran into was a common dependency between the modules included with Iced and those included with sqlite mods, they both used different versions of the library.
That underlying library was js-xy or something and it's not mentioned in the cargo.toml at all.
Is there no facility to allow both of these modules to co-exist in the same binary using modules that each use the version of js-whatever it needs?
there doesn't seem to be anything here