dpc
dpc
I came here to report the same issue. ``` --- a/Cargo.toml +++ b/Cargo.toml @@ -160,6 +160,7 [profile.dev.package] ring = { opt-level = 3 } +tikv-jemalloc-sys = { opt-level = 3...
Huh... I found some time to do more investigation, and it seems the actual failure was: ``` fedi-fedimint-pkgs-group-ci-deps> /nix/store/wmq01pqz681xdgq2n0hl5w7bbdr738g1-clang-wrapper-16.0.6/bin/clang -std=gnu11 -Werror=unknown-warning-option -Wall -Wextra -Wshorten-64-to-32 -Wsign-compare -Wundef -Wno-format-zero-length -Wpointer-arith -Wno-missing-braces -Wno-missing-field-initializers...
@BusyJay https://privatebin.net/?ad34988dfa9659f7#JDDeeshFA65rDgVUNxWMAQnwe3h27HRzrHW8MTrQBGbw
It isn't impossible it is a NixOS issue. It seems it doesn't happen with clang14 provided by NixOS, but it does with clang16 (would need to confirm it again). It's...
I guess it makes sense to report to nixpkgs then: https://github.com/NixOS/nixpkgs/issues/370494
> For decode we're handling both cases but for encode we're writing stand b64, should write as url safe IIRC I did it this way to let clients in the...
> when did we add ability to parse url safe base 64? IIRC it will really be out in 0.3, as it was added post 0.2 > we can't deprecate...
> @dpc that would mean 0.4 e-cash notes and invites could not be parsed by 0.2 clients. Yes. > There should be at least a way to allow integrators to...
> Quinn recommends [WebTransport ](https://github.com/quinn-rs/quinn/issues/1388#issuecomment-1199750713) for browser WebAssembly environment. Last comment in that thread says: > There are now implementations of WebTransport that use Quinn, e.g. https://github.com/kixelated/webtransport-rs. Quinn is a...
I solved similar issue in `SpendableNote` by introducing `SpendableNoteUndecoded`, which avoids doing crypto until actually required.