Taylor Everding
Taylor Everding
I have a need to convert many strings from "this format" to "THIS_FORMAT" for creating internalization keys. I would like to see this added to the package. Let me know...
I added an option, -a, that allows users to specify on which interface to bind. It defaults to 127.0.0.1. While trying to test my changes, I ran into the error...
Please forgive me if this is expected behavior. It surprised me and further investigation would require significant effort. After creating a new project, running `cargo lambda watch`, and `curl http://localhost:9000/lambda-url//`,...
Currently `lambda watch` will [always bind to 127.0.0.1](https://github.com/cargo-lambda/cargo-lambda/blob/c9cc800da210007ef118e9c105be3e55e0457fe5/crates/cargo-lambda-watch/src/lib.rs#L121). This makes the provided docker container less useful since one must exec into the container or use network mode host. I tried...
I was surprised to discover that [std::iter::Step](https://doc.rust-lang.org/std/iter/trait.Step.html) was not implement on either IBig nor UBig. Implementing Step means that IBig and UBig could be used in [Range](https://doc.rust-lang.org/stable/std/ops/struct.Range.html), allowing: ```rust for...
In #1525 I vowed to write tests for the allow header. This PR fulfills my obligation. If I failed to adhere to some facet of the [contributing guidelines](https://github.com/tokio-rs/axum/blob/main/CONTRIBUTING.md) or I...
When I run `cargo test` I get the following error. I am happy to fix it. Is this a PR you would accept? Would you prefer I delete the examples...
Is it possible to add additional methods to the handler object? An example would be PATCH, LINK, UNLINK, etc... If this is already possible, then the documentation should be updated.
Exporting a CRUDCollection from a route defined using server.routeDirectory should automatically create both endpoints that CRUDCollections make. That is, it should also create the wildcard. I have no problems implementing...
It is not uncommon to import something that is provided by a babel-plugin. One such example is [babel-plugin-rewire](https://github.com/speedskater/babel-plugin-rewire). It provides `__Rewire__` and `__ResetDependency__` to "override" local variables. I purpose adding...