UebelAndre

Results 137 issues of UebelAndre

Would it be possible to introduce `@platforms//abi` which contains constraints for common ABI definitions of [platform triples](https://clang.llvm.org/docs/CrossCompilation.html#target-triple)? In `rules_rust` we currently have issues with users wanting to target platforms with...

P2

This pull-requests adds [constraint_value](https://bazel.build/reference/be/platform#constraint_value) flags for common [abi](https://en.wikipedia.org/wiki/Application_binary_interface) flags. Defining these in the `@platforms` repository avoids other rules from needing to define custom constraints and/or avoids each repository defining project...

# 🐞 bug report ### Description Attempting to use [rules_go v0.35.0](https://github.com/bazelbuild/rules_go/releases/tag/v0.35.0) with [rules_docker v0.25.0](https://github.com/bazelbuild/rules_docker/releases/tag/v0.25.0) leads to the following error ``` ERROR: /Users/Code/BUILD.bazel:33:19: every rule of type container_push_ implicitly depends upon...

Would it be possible for buildifier to detect and warn about the use of open ended glob patterns? ```starlark filegroup( name = "sources", srcs = glob(["src/*"]), ) ``` I'm finding...

Buildifier should allow docstrings on global variables. It currently does not and by applying something like the following diff to [rules_rust](https://github.com/bazelbuild/rules_rust/tree/0.9.0) ```diff diff --git a/version.bzl b/version.bzl index 7e40f459..fdee7b85 100644 ---...

https://blog.rust-lang.org/2022/09/22/Rust-1.64.0.html

## PR Checklist Please check if your PR fulfills the following requirements: - [ ] Tests for the changes have been added (for bug fixes / features) - [ ]...

Recently an issue was reported to [rules_rust](https://github.com/bazelbuild/rules_rust) Bazel project related to how one of it's tools renders `Cargo.lock` files (https://github.com/bazelbuild/rules_rust/issues/1535#issue-1356876790). It seems the `cargo-lock` crate always renders registry entries into...

What would be required to pipe an `--offline` argument through to the `cargo metadata` call? I'm working on some Bazel rules using `cbindgen` and need to guarantee `cbindgen` calls are...

I have some dependencies that I've migrated away from `rules_foreign_cc` since the configure scripts were escaping the action sandbox and causing cache poisoning. However, I configured the project to basically...

enhancement