blob: 5f77804901e9929fc8d9ccf7db966ff2c1f9b326 [file] [log] [blame]
# Copyright 2023 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.
import("//build/rust/rustc_library.gni")
rustc_library("router_error") {
edition = "2024"
with_unit_tests = false
deps = [
"//sdk/fidl/fuchsia.component.runtime:fuchsia.component.runtime_rust",
"//sdk/fidl/fuchsia.component.sandbox:fuchsia.component.sandbox_rust",
"//sdk/rust/zx-status",
"//src/sys/lib/moniker",
"//third_party/rust_crates:thiserror",
]
sources = [ "src/lib.rs" ]
visibility = [
"//src/sys/component_manager/*",
"//src/sys/lib/routing/*",
"//tools/lib/cm_fidl_analyzer:*",
"//tools/lib/cm_fidl_analyzer/tests:*",
]
}