We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Is your feature request related to a problem? Please describe. The ractor_cluster can not compile on windows.
Describe the solution you'd like Do not depend the protobuf-src and use the protoc directly(Can find by the ENV).
fn build_protobufs() { if cfg!(windows){ if std::env::var("PROTOC").is_err(){ panic!("Set protoc.exe path to the PROTOC!"); } } else{ std::env::set_var("PROTOC", protobuf_src::protoc()); } // ... }
The text was updated successfully, but these errors were encountered:
Please feel free to submit a Windows specific pr! I don't have an environment to test this with easily so feel free to contribute
Sorry, something went wrong.
I believe this is fixed with #296 since we now use vendored protoc instead of building it from source.
protoc
No branches or pull requests
Is your feature request related to a problem? Please describe.
The ractor_cluster can not compile on windows.
Describe the solution you'd like
Do not depend the protobuf-src and use the protoc directly(Can find by the ENV).
The text was updated successfully, but these errors were encountered: