From 895ab19429e4daab85b14a09d1a14cfa1bfc1ef0 Mon Sep 17 00:00:00 2001 From: guza Date: Thu, 25 Sep 2025 20:23:00 +0800 Subject: [PATCH] fix(docs): update outdated Bincode specification link --- docs/architecture/encoding.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/architecture/encoding.md b/docs/architecture/encoding.md index bd0fde3d..980cd6a4 100644 --- a/docs/architecture/encoding.md +++ b/docs/architecture/encoding.md @@ -12,7 +12,7 @@ encoding scheme for Rust. Bincode is convenient because it can easily encode any data type. But we could also have chosen e.g. [JSON](https://en.wikipedia.org/wiki/JSON), [Protobuf](https://protobuf.dev), [MessagePack](https://msgpack.org/), or any other encoding. -We won't dwell on the actual binary format here, see the [Bincode specification](https://github.com/bincode-org/bincode/blob/trunk/docs/spec.md) +We won't dwell on the actual binary format here, see the [Bincode specification](https://git.sr.ht/~stygianentity/bincode/tree/trunk/item/docs/spec.md) for details. To use a consistent configuration for all encoding and decoding, we provide helper functions in