Neil Mitchell
Neil Mitchell
At Digital Asset we are using proto3-wire and proto3-suite. We are just in the process of switching to the upstream versions. However, we're pulling them straight from your git repo,...
I can't see a test suite for this code. To date, I've been using the DAML tests as part of https://github.com/digital-asset/daml - but that doesn't actually run the test suites....
We at Digital Asset took your work and made a bunch of performance improvements to the Decode module. The code is at https://github.com/digital-asset/daml/blob/master/nix/third-party/proto3-wire/src/Proto3/Wire/Decode.hs and the approximate list of changes I've...
Looking at https://github.com/awakesecurity/proto3-wire/blob/43d8220dbc64ef7cc7681887741833a47b61070f/src/Proto3/Wire/Decode.hs#L288-L293 It says "To comply with the protobuf spec, if there are multiple fields with the same field number, this will always return the last one" and then...
If I have `args/file1.txt` with: ``` @file2.txt ``` And `args/file2.txt` with: ``` --foo ``` I would expect running a command line with `@args/file1.txt` would see `--foo` as the files inside...
I ran: ``` C:\Neil>bigbro-fsatrace - log.txt -- cargo install bigbro --force Updating crates.io index Installing bigbro v0.5.2 Compiling libc v0.2.60 Compiling bigbro v0.5.2 Finished release [optimized] target(s) in 5.78s Replacing...
Very cool project :) I wondered if you'd considered whether it would be possible to reuse the open source upstream Buck2 prelude as well? It seems that Nix is a...
On a GitHub Mac runner I do: ``` git clone https://github.com/jacereda/fsatrace.git .fsatrace (cd .fsatrace && make) fsatrace v - -- echo fsatrace works ``` But that fails with: ``` dyld[79178]:...
As noted by @contivero, stack test should do a test. Probably just add an extra Test.hs which calls the existing test suite.
### Describe the Bug Given: ``` long_variable_name = 1 y = long_variuble_name ``` We produce the error: ``` ERROR 2:5-23: Could not find name `long_variuble_name` [[unknown-name](https://pyrefly.org/en/docs/error-kinds/#unknown-name)] ``` We should suggest...