bd-workspace-hack 0.1.1

workspace-hack package, managed by hakari
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
load("@crates//:defs.bzl", "aliases", "all_crate_deps")
load("//tools/lint:linters.bzl", "rust_library")

package(default_visibility = ["//visibility:public"])

rust_library(
    name = "bd-workspace-hack",
    srcs = glob(
        ["src/**/*.rs"],
        exclude = ["src/bin/**/*.rs"],
    ),
    crate_features = ["default"],
    crate_name = "bd_workspace_hack",
    crate_root = "src/lib.rs",
    edition = "2024",
    deps = all_crate_deps(normal = True),
)