The package fails to build from source on Python 3.13 and newer. The compilation fails in src/args.cc with the error 'uint64_t' was not declared in this scope.
This is caused by the use of uint64_t without the required std:: namespace prefix. Modern C++ compilers do not find the type definition without it.
The fix is to update all instances of uint64_t to std::uint64_t and ensure the <cstdint> header is included where necessary.
The package fails to build from source on Python 3.13 and newer. The compilation fails in
src/args.ccwith the error'uint64_t' was not declared in this scope.This is caused by the use of
uint64_twithout the requiredstd::namespace prefix. Modern C++ compilers do not find the type definition without it.The fix is to update all instances of
uint64_ttostd::uint64_tand ensure the<cstdint>header is included where necessary.