Rauhul Varma
Rauhul Varma
The pico sdk examples currently require an arm gnu toolchain, but the sdk seems to support clang, we should try switching over to that instead and avoiding a second toolchain
Add a feature for "Embedded" which should pass `--enable-experimental-feature Embedded` to swiftc and enable `-wmo`. Additionally object files from intermediate modules should not be linked in to the final binary.
Removes the script based availability system with the experimental availability macro feature.
ToolInfo provides argument grouping via the section title property, we should use this to combine args under headings
Self explanatory, swift testing offer more features and uses parallel execution by default which is a nice win
completions fail shell check with both warnings and errors
It would be really to be able to open and view files generated by swiftpm build tool plugins. Ideally these would look like "gitignored" files in the target folder they...
builds fail with: ``` $ bazel build @@rules_swift_package_manager++swift_deps+swiftpkg_swift_cassandra_client//:Clibuv.rspm_c external/rules_swift_package_manager++swift_deps+swiftpkg_swift_cassandra_client/Sources/Clibuv/libuv/src/timer.c:21:10: fatal error: 'uv.h' file not found 21 | #include "uv.h" ``` I think this is because swift-cassandra-client uses custom `sources` paths...
Since Decodable is swift's goto protocol for object serialization, it doesn't make sense for APIReturnable to require implementation beyond Decodable. The only additional information needed to convert from Data to...