blob: a1c865c148da04a83f257ed6f2fcfc60e918a750 [file] [log] [blame]
# Copyright 2019 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"
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"//sdk/fidl/fuchsia.hardware.ethernet:fuchsia.hardware.ethernet-rustc",
"//sdk/fidl/fuchsia.net:fuchsia.net-rustc",
"//sdk/fidl/fuchsia.net.dhcp:fuchsia.net.dhcp-rustc",
"//sdk/fidl/fuchsia.net.filter:fuchsia.net.filter-rustc",
"//sdk/fidl/fuchsia.net.name:fuchsia.net.name-rustc",
"//sdk/fidl/fuchsia.net.stack:fuchsia.net.stack-rustc",
"//sdk/fidl/fuchsia.netstack:fuchsia.netstack-rustc",
"//sdk/fidl/fuchsia.router.config:fuchsia.router.config-rustc",
"//src/connectivity/lib/net-types",
"//src/connectivity/management/network-manager/core/interface:lib",
"//src/lib/fdio/rust:fdio",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia-async",
"//src/lib/fuchsia-component",
"//src/lib/network/fidl_fuchsia_hardware_ethernet_ext",
"//src/lib/network/fidl_fuchsia_net_name_ext",
"//src/lib/network/fidl_fuchsia_net_stack_ext",
"//src/lib/syslog/rust:syslog",
"//src/lib/zircon/rust:fuchsia-zircon",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:eui48",
"//third_party/rust_crates:futures",
"//third_party/rust_crates:log",
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_json",
"//third_party/rust_crates:tempfile",
"//third_party/rust_crates:thiserror",
"//third_party/rust_crates:valico",
]
test_deps = [
"//src/lib/fidl/rust/fidl",
"//third_party/rust_crates:matches",
]
sources = [
"src/address.rs",
"src/config.rs",
"src/error.rs",
"src/hal.rs",
"src/lib.rs",
"src/lifmgr.rs",
"src/oir.rs",
"src/packet_filter.rs",
"src/portmgr.rs",
"src/servicemgr.rs",
]
}