| # Copyright 2025 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("lib") { |
| name = "ffx_diagnostics_formatting" |
| edition = "2024" |
| with_unit_tests = true |
| deps = [ |
| "//sdk/fidl/fuchsia.net:fuchsia.net_rust", |
| "//src/developer/ffx/fidl:fuchsia.developer.ffx_rust", |
| "//src/developer/ffx/lib/discovery:lib", |
| "//src/developer/ffx/lib/errors:lib", |
| ] |
| |
| sources = [ "src/lib.rs" ] |
| } |