blob: 553de0a56b8bea5b7e9e31d861468a0695d48132 [file]
# 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,
)