Jacob Rothstein
Jacob Rothstein
draft of listener configs
In order to serve an index file, the following is currently required: ```rust let static_dir = PathBuf::from("/some/path"); app.at("/") .get(|_| async { Ok(Body::from_file(static_dir.join("index.html")).await?) }) .serve_dir(static_dir)?; ``` Many uses of serve_dir would...
If someone discovers a security vulnerability in http-rs ecosystem, who do they contact and what is the procedure for resolution? One action might be writing and publishing something along the...
When servers support multiple listeners, this should be expanded to include both a global maximum as well as a per-listener maximum. This could either be a hard ceiling in which...
closes #426
Dependency bumps and a tuning parameter
Within webpki and prior to a client cert being accepted, - [x] CRL support - [x] Path validation, likely incorporating webpki CRL support After a connection has been established, -...
### Library name DivviUp DAP Client ### Library license https://github.com/divviup/divviup-ts/blob/main/LICENSE ### Library source https://www.npmjs.com/package/@divviup/dap ### Files to include - dist/browser.js - dist/browser.js.map
Opening this draft PR for discussion of the tentative changes proposed in [async-session#57](https://github.com/http-rs/async-session/pull/57) for async-session v4. I will update it when async-session v4 is released.
## Bug description I'm trying to use release-plz in [a fairly large workspace](https://github.com/trillium-rs/trillium) and have discovered that every release updates workspace-local dependencies, which in turn makes release-plz think that a...