Dmytro Barannik
Dmytro Barannik
Hi, I mentioned similar thing in section "Factory functions". You can find more about this [here](https://stackoverflow.com/questions/32034529/the-impl-does-not-reference-any-types-defined-in-this-crate). In brief, in Rust you can't implement an interface/trait from crate A for a...
It's only question of preferences. You need to keep interfaces and implementations in the same crate. If it will be the same app, you can use Rust modules instead.
You can read about this here: https://www.reddit.com/r/rust/comments/7agy4b/could_we_ever_implement_traits_for_structs/ https://users.rust-lang.org/t/how-do-i-implement-an-external-trait-for-an-external-struct/38623/39 https://doc.rust-lang.org/book/ch19-03-advanced-traits.html#using-the-newtype-pattern-to-implement-external-traits-on-external-types I also frustrated by this. But actually the main target of DI container is to simplify the project setup and remove...
For me, the issue wasn’t just with the repository but also with Java 22, which isn’t supported. I created this docker-compose.yml - maybe it will be useful to someone here:...