| # Copyright 2026 The Fuchsia Authors. All rights reserved. | |
| # Use of this source code is governed by a BSD-style license that can be | |
| # found in the LICENSE file. | |
| load( | |
| "//build/bazel/rules/rust:defs.bzl", | |
| "rustc_library", | |
| ) | |
| package(default_applicable_licenses = ["//:license"]) | |
| rustc_library( | |
| name = "directed_graph", | |
| srcs = [ | |
| "src/lib.rs", | |
| ], | |
| crate_name = "directed_graph", | |
| edition = "2024", | |
| visibility = ["//:__subpackages__"], | |
| with_unit_tests = True, | |
| ) |