blob: 1d5dd965d88a074f8d542891a8b75b115e5c3569 [file] [log] [blame]
# Copyright 2024 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("ffx_bluetooth_common") {
name = "ffx_bluetooth_common"
version = "0.1.0"
edition = "2021"
with_unit_tests = true
deps = [
"//src/connectivity/bluetooth/lib/fuchsia-bluetooth",
"//third_party/rust_crates:regex",
]
sources = [ "src/lib.rs" ]
}