Rust AWS lambda with glibc
Why AWS has announced supporting rust for the lambda, but does not provide an official runtime for it. You have to provide your own, and the official way is through building a target where you can statically link a libc implementation: musl. While it appears you could statically link the glibc, it is not advised. (see here and here) So for AWS: What While searching for alternative solutions to this (Because reasons), I found that since late 2020, they added a container image support to AWS lambda. ...