Luca Palmieri

Results 278 comments of Luca Palmieri

Wow, there really is a lurking interest 😛 This is just great. The discussion has explored several different directions, I'd like to give more details on what I do envision...

> Question: what would a general `Model` trait look like? I think the challenge is striking a balance between generality and specificity; you don't want to tie people down too...

> while requiring the user to pay for it even if they have no use for it. I appreciate where you are coming from, but I find it difficult to...

Hey! Thank you - can you patch the installation instructions for all platform, not just MacOS?

This has been fixed in `main`.

This is most likely an issue related to how the Docker networking is setup on your machine 🤔

My wild guess is that one of the `COPY` directives is causing RAM usage to go above the (very constrained) capacity of Digital Ocean's bulider. This is so annoying, sorry...

Can you try with this edited Dockerfile, that still includes `cargo-chef` but avoids copying over the cached dependencies? ``` FROM lukemathwalker/cargo-chef:latest-rust-1.53.0 as chef WORKDIR /app FROM chef as planner COPY...

I managed to try it out this morning and I can confirm it no longer fails due to an out-of-memory error. The revised Dockerfile will be included in the next...

This is not a cargo-chef issue unfortunately - it's a fundamental limitation of the build machines on DO combined with high resource usage by the Rust compiler. The real solution...