Mikhail Katychev
Mikhail Katychev
I cannot seem to reproduce this diff locally with protobuf 25: https://github.com/hyperium/tonic/actions/runs/9472891207/job/26134316596#step:7:16
> @mkatychev you just need to run `cargo run --package codegen` Hi @LucioFranco I did that with the given version of protoc (25.1) on macOS and I am not able...
@rewinfrey do you mind submitting this to https://github.com/treywood/tree-sitter-proto ? That seems to be the defacto successor fork of this project since it got accepted into https://github.com/nvim-treesitter/nvim-treesitter/pull/5185/files
Hey thanks for getting back to me! I'm quite unfamiliar with the GitHub API but my main use case was to trawl through already closed PRs at time of sync...
@ptsochantaris this does make sense thank you, and sorry for the two month reply! I suppose scraping closed PRs would be a better alternative than doing this then.
This is really nice, what would it take to some of the wasm support put upstream?
Thanks for the reply, I think up-streaming this addition would fare better than maintaining a fork. My question was more along the lines of what mutually exclusive compilation flags to...
I've gone through your changes, I think I answered my own question.
clap's [derive builder](https://docs.rs/clap/latest/clap/_derive/index.html#arg-attributes) provides a pretty flexible pattern for this approach: ```rust #[derive(Parser, Debug, Clone)] #[command(name = "pretty-print-file")] pub struct MyPrinter { #[arg(short, long, value_parser = |p: &str| PrettyFile::from_path(p))] pub...
reposting https://github.com/casey/just/issues/604#issuecomment-1934922523: [@]casey are there any discussions on doing cargo style `[not(condition)]`/`[condition]` annotations?: ```justfile [not(windows)] run: cc main.c ./a.out [windows] run: cl main.c main.exe ``` I imagine my usecase is...