blob: 8d62cdd21400a7454616073c40cf2731402467dd [file] [log] [blame]
# Copyright 2020 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 = "network_manager_core_interface"
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"//src/lib/network/fidl_fuchsia_hardware_ethernet_ext",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:tempfile",
]
sources = [ "src/lib.rs" ]
}