(feat): add max message size to wasm
Some checks failed
CI / rustfmt (push) Successful in 17s
CI / wasm build (push) Successful in 1m15s
CI / clippy (push) Successful in 1m30s
CI / test (push) Successful in 1m48s
CI / example (push) Successful in 1m32s
CI / duplicate code (push) Failing after 29s
CI / web client (push) Failing after 30s
CI / cargo-machete (push) Successful in 1m7s
CI / cargo-deny (push) Failing after 2m23s

(feat): add pq key generation to wasm
(qol): update gitignores
This commit is contained in:
Alois 2026-06-28 13:08:37 +02:00
commit d9ad5e5b3d
23 changed files with 341 additions and 1996 deletions

View file

@ -1026,11 +1026,7 @@ fn generate_id_display_impls(out: &mut String) {
" fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {{"
)
.unwrap();
writeln!(
out,
" match communication_type_name(self.0) {{"
)
.unwrap();
writeln!(out, " match communication_type_name(self.0) {{").unwrap();
writeln!(out, " Some(name) => f.write_str(name),").unwrap();
writeln!(
out,
@ -1048,11 +1044,7 @@ fn generate_id_display_impls(out: &mut String) {
" fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {{"
)
.unwrap();
writeln!(
out,
" match data_type_name(self.0) {{"
)
.unwrap();
writeln!(out, " match data_type_name(self.0) {{").unwrap();
writeln!(out, " Some(name) => f.write_str(name),").unwrap();
writeln!(
out,