Results 3 issues of ZongRun

# Bazel version: 7.0.0 When I declare a new target in the BUILD of a wrokspace member folder: ![企业微信截图_17034803488357](https://github.com/bazelbuild/rules_rust/assets/16054053/65bc1206-d4a7-4b1b-9cee-cd6847e650be) Running `bazel build` gives me the error as following: ![企业微信截图_17034797846719](https://github.com/bazelbuild/rules_rust/assets/16054053/a5b7781c-c35c-45cd-9110-11d675a71c55) But...

I notice the following code snippet in `lz_filter_impl` function: ```c /* Do the actual deflate'ing: */ if (lua_gettop(L) > 0) { stream->next_in = (unsigned char*)lua_tolstring(L, -1, &avail_in); } else {...

Recently I'm reading the source code of `fiber::mutex`, I noticed that`fiber::mutex` will yield in `try_lock` no matter whether holding the lock or not? What's the considerations behind it, and can...