battlmonstr

Results 49 issues of battlmonstr

Version 2.7 works, but 2.8.1 fails with: > error: There is no XCFramework found at '.../Carthage/Checkouts/SwinjectAutoregistration/Carthage/Build/Swinject.xcframework'. (in target 'SwinjectAutoregistration-iOS' from project 'SwinjectAutoregistration') carthage build --platform iOS --cache-builds SwinjectAutoregistration carthage 0.38...

I'm using a `||` operator to wait for one of the 2 coroutines: ``` void wait_one(awaitable a1, awaitable a2) { auto future = co_spawn(io_context, a1 || a2, use_future); future.wait(); }...

I'm trying to bootstrap a coroutine task from a non-coroutine context, and be able to stop it from outside via a cancellation_signal: ``` struct Task { void start(awaitable run); void...

* framing: secrets, MAC, encrypt/decrypt frames and messages * Hello message exchange Refactorings: * rename session keys to auth keys * refactor ECIES crypto to reuse in framing * refactor...

Manually wrap lines exceeding 120 chars and remove those files from the CI check exceptions. Note: most of the files (420) didn't have line length violations. This PR fixes 30...

Currently there are 2 package managers: * git + cmake (via git submodules and cmake scripts) * hunter GMP is not included there, and has to be installed manually. It...

CMake on macOS using: ``` cmake .. -G Ninja -DCMAKE_BUILD_TYPE=Debug -DGMP_INCLUDE_DIR=... -DGMP_LIBRARY=... ``` Produces a warning: ``` CMake Warning (dev) at third_party/CRoaring/src/CMakeLists.txt:40 (add_library): Policy CMP0063 is not set: Honor visibility...

* sentry.proto HandShake * sentry.proto SetStatus * ForkId (EIP-2124) * Status message exchange and verification * coroutines startup refactoring * fix Sepolia distinct_fork_numbers * ServerContextPool helper constructor to init SentryImpl...

see https://github.com/battlmonstr/silkworm/commits/clangtidy TODO: * fix include header issues * guard extra includes in compiler_settings.cmake with a special flag * bring in extra llvm include files somehow * add more ways...

Hello, I'd like to check if iOS can be upgraded by an app user. Implementing it requires to maintain a "Max iOS" list like here: https://iosref.com/ios (see the rightmost column)...