The Lambda runtime core crate implements Lambda's custom runtime main loop.
The crate receives a Handler type that consumed events in the form of Vec<u8> and
outputs a Result with a Vec<u8> successful output.
Unless you have specific requirements to consume/produce raw bytes, you should look at the
lambda_runtime crate.
TODO: Add example