Gerald Melles
Gerald Melles
I'm not sure why this issue drifted to geospatial support when the OP clearly meant only geometric support? Also, did you note the [pull request](https://github.com/launchbadge/sqlx/pull/242) by @qtbeee for support of...
I second this. At first glance, maybe it could also unlock use cases for sled-based persistence layers to make their decision about whether to load referenced K/Vs eagerly or lazily...
This seems to be similar to what was proposed in [2917](https://github.com/rustwasm/wasm-bindgen/issues/2917) and [2920](https://github.com/rustwasm/wasm-bindgen/pull/2920), with the [concern](https://github.com/rustwasm/wasm-bindgen/pull/2920#issuecomment-1142220600) noted in the latter applying here, too. I would also like to at least...
I seem to have encountered the same problem. Rust source: ``` #[wasm_bindgen(raw_module ="/static/my_module.js")] extern "C"{ #[wasm_bindgen(js_name = "default")] async fn init(wasm_path: &str); } ``` Generated binding: `import { _default }...
I put together an MVP draft for a bare minimum of DPoP functionality, feedback welcome.
For a slightly wider context of the issue at hand: @theduke may be working on a proposal to address this ([component-model issue #58](https://github.com/WebAssembly/component-model/issues/58)). Seems to me that with this being...
It's been a while since this was last discussed - and it seems like N3 support hasn't landed. I'd love to know if the idea was abandoned altogether or if...
All good, that's why it's a draft. I'll look into publishing DPoP functionality in a separate crate. It would still be great to build upon existing JWT support though, and...
I tried to put together a working example, see below. To my mind it really comes down to satisfying what `ArchivedIndexMap::serialize_from_iter_index` expects using a `With`-Wrapper. External Crate ``` use indexmap::IndexMap;...