Jasper
Jasper
Am I mistaken, or is this not right? Affected version: 2.0.0 ```js async function test() { const payload = Uint8Array.from([0, 3, 4, 2]) const key = await jose.JWK.createKey('EC', 'P-256') const...
I was trying to pass `{ credentials: 'include' }` for CORS stuff but it seems like these aren't passed when declaring a fetcher instance... being able to do this would...
Hi there. I'm getting the following error when trying to compile my wapm package with the command: ```sh RUSTFLAGS='-C target-feature=+atomics,+bulk-memory,+mutable-globals' \ rustup run nightly-2023-05-31 \ cargo build --target wasm32-wasi --release...
Since `type Validator = fn(&T) -> bool;`, i can't do something like: ```rs let existing_filenames = read_dir(...); Readline::default() .title("Name new file:") .validator(|name| !existing_filenames.contains(name.to_string()), |name| format!("File {} already exists", name)) .prompt()?...
Hi I like how this library is organized, but I'm struggling to find a way to do the following: 1. Create a JWK from system randomness 2. Create a signature...