From 25bfe9eef1a2435023f8da79dfc1e413b7f44d83 Mon Sep 17 00:00:00 2001 From: Geremia Date: Fri, 22 May 2026 21:08:04 -0700 Subject: [PATCH] [env] CXXFLAGS = "-include cstdint" added to Cargo.toml, fixing https://github.com/romanz/electrs/issues/1276 --- Cargo.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Cargo.toml b/Cargo.toml index e18346bcc..bcd054dd6 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -66,3 +66,7 @@ lto = true [lints.clippy] uninlined_format_args = "allow" # TODO: https://github.com/romanz/electrs/issues/1199 + +[env] +CXXFLAGS = "-include cstdint" +