| load( | |
| "@io_bazel_rules_rust//rust:rust.bzl", | |
| "rust_library", | |
| ) | |
| rust_library( | |
| name = "pkg_config", | |
| srcs = glob(["**/*.rs"]), | |
| crate_root = "src/lib.rs", | |
| crate_type = "lib", | |
| edition = "2015", | |
| rustc_flags = [ | |
| "--cap-lints=allow", | |
| ], | |
| version = "0.3.17", | |
| visibility = ["//visibility:public"], | |
| ) |