http-types icon indicating copy to clipboard operation
http-types copied to clipboard

Common types for HTTP operations

Results 111 http-types issues
Sort by recently updated
recently updated
newest added

I came here via an unexpected panic in my [tide webserver](https://github.com/http-rs/tide/), but I think the problem belongs here. When I'm using a cookie that might be a bit "odd" like...

Use a 64 bit `trace_id` (instead of 128 bit) so that it can be compiled for `wasm32-unknown-emscripten`

Updated dependencies, added rust-toolchain.toml file with nightly channel described.

This crate depends on the `http` crate (for obvious reason). That crate has had a [major version bump to v1.0.0](https://github.com/hyperium/http/releases/tag/v1.0.0). This crate should track this update to allow interoperability with...

This bumps cookie to 0.17.0

Hello there, this crate has not seen a release in > 1 year (and some features are present in main, e.g. MIME types for Atom/RSS), do you know what is...

I think it would be nice to have a [manifest source](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Content-Security-Policy/manifest-src) directive ````http Content-Security-Policy: manifest-src https://trusted.com https://also.trusted.com; ````

# Heyo 👋 Url queries that have been url encoded are improperly cast to structs containing vectors. Some example code for this: ```rust #[derive(Deserialize, Debug)] struct MultiPrintQuery { things_to_print: Vec...

Hi all, I just noticed a crash on my application when calling `if let Ok(mime: Mime) = x.try_into()` beacuse of the `unwrap()` in: https://github.com/http-rs/http-types/blob/v2.12.0/src/mime/mod.rs#L131 I think `TryFrom` implementation would be...