[owners] Update/fix Rust auto-generated owners
The auto_owners tool used `include path/to/file` in autogenerated owners
files however the correct syntax is `include /path/to/file`:
https://gerrit.googlesource.com/plugins/find-owners/+/master/src/main/resources/Documentation/syntax.md
```
If the filePath starts with “/”, it is an absolute path starting from the
project root directory. Otherwise, the filePath is added a prefix of the
current including file directory and then searched from the (given) project
root directory.
```
Include lines in find-owners are not validated for existence because they can
bridge Gerrit proejcts (repositories) with the `include project:path/to/file`
variant which would be a path to information disclosure.
Also fix the `rustls` owners which were pointed at a directory instead
of an OWNERS file.
Bug: 81835
Change-Id: Ibbfeefb590a05adc464c975f70defc9234a97755
Reviewed-on: https://fuchsia-review.googlesource.com/c/fuchsia/+/563721
Commit-Queue: Nathan Mulcahey <nmulcahey@google.com>
Fuchsia-Auto-Submit: Nathan Mulcahey <nmulcahey@google.com>
Reviewed-by: Tyler Mandry <tmandry@google.com>
diff --git a/third_party/rust_crates/vendor/lock_api/OWNERS b/third_party/rust_crates/vendor/lock_api/OWNERS
index 1053563..177ec9c 100644
--- a/third_party/rust_crates/vendor/lock_api/OWNERS
+++ b/third_party/rust_crates/vendor/lock_api/OWNERS
@@ -2,4 +2,4 @@
# TO MAKE CHANGES HERE, UPDATE //third_party/rust_crates/owners.toml.
# DOCS: https://fuchsia.dev/fuchsia-src/development/languages/rust/third_party#owners-files
-include third_party/rust_crates/vendor/parking_lot/OWNERS
+include /third_party/rust_crates/vendor/parking_lot/OWNERS