From 86166196deb1a4e979640998cfc64d6ef32df2d1 Mon Sep 17 00:00:00 2001 From: Marcin Czenko Date: Tue, 25 Mar 2025 14:58:10 +0100 Subject: [PATCH] adds push raises to a couple of new files --- codex/bittorrent/bencoding.nim | 2 ++ codex/bittorrent/manifest/decoding.nim | 2 ++ codex/bittorrent/manifest/encoding.nim | 2 ++ codex/bittorrent/manifest/manifest.nim | 2 ++ 4 files changed, 8 insertions(+) diff --git a/codex/bittorrent/bencoding.nim b/codex/bittorrent/bencoding.nim index 2932b18d..77954bed 100644 --- a/codex/bittorrent/bencoding.nim +++ b/codex/bittorrent/bencoding.nim @@ -1,3 +1,5 @@ +{.push raises: [].} + import std/strformat import pkg/stew/byteutils diff --git a/codex/bittorrent/manifest/decoding.nim b/codex/bittorrent/manifest/decoding.nim index 3e173a0d..a0bec57b 100644 --- a/codex/bittorrent/manifest/decoding.nim +++ b/codex/bittorrent/manifest/decoding.nim @@ -1,3 +1,5 @@ +{.push raises: [].} + import pkg/libp2p/cid import pkg/libp2p/multihash import pkg/libp2p/protobuf/minprotobuf diff --git a/codex/bittorrent/manifest/encoding.nim b/codex/bittorrent/manifest/encoding.nim index 55eb2958..60409d0f 100644 --- a/codex/bittorrent/manifest/encoding.nim +++ b/codex/bittorrent/manifest/encoding.nim @@ -1,3 +1,5 @@ +{.push raises: [].} + import pkg/libp2p/cid import pkg/libp2p/multihash import pkg/libp2p/protobuf/minprotobuf diff --git a/codex/bittorrent/manifest/manifest.nim b/codex/bittorrent/manifest/manifest.nim index 643f8798..aac180bd 100644 --- a/codex/bittorrent/manifest/manifest.nim +++ b/codex/bittorrent/manifest/manifest.nim @@ -1,3 +1,5 @@ +{.push raises: [].} + import pkg/libp2p import pkg/stew/byteutils import pkg/questionable