David Calavera

Results 104 comments of David Calavera

You might want to take a look at this project: https://github.com/LegNeato/aws-lambda-events

@brainstorm I've been playing with a cargo subcommand that abstracts away most of the boilerplate necessary to build and organize lambda binaries, check it out: https://crates.io/crates/cargo-lambda I didn't call it...

I don't have a clear solution for this. The problem is that we read the variables, and then spawn a command with them in it. This command executes `cargo watch`...

that would be definitely a nice feature. I'm not sure how it'd work from the top of my mind. Feel free to put something together, we can iterate on how...

however, it might be better to put a template/example together on how to do that with the AWS CDK, since it should be able to manage state better than just...

Yeah. I tried to integrate cargo-lambda with SAM, and I bumped into an issue on Windows, you can read more in #77. This CDK construct for Rust functions use cargo-lambda...

That's part of it. The `build` and `deploy` subcommands already have support for extensions. I need to think about how to support extensions with the `watch` subcommand. That's the most...

@simonvandel I bumped into an issue with the `@ziglang/cli` dependency because didn't work on Windows, and I didn't continue forward with it. Feel free to take a stab at it...

That's really nice, thanks! The problem I've seen in the past with actions that download binaries is that they might get rate limited by GitHub because the user is not...

That's an interesting problem, thanks for opening this issue @giuliano-oliveira ! It might be better to implement something like this in https://github.com/messense/cargo-zigbuild but I'm very open to contributions, so if...