blob: 7b57629db7bebc1e96859aa6a7ca9232f83655d4 [file] [log] [blame]
# Copyright 2017 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("netstack-core") {
name = "netstack_core"
version = "0.1.0"
edition = "2018"
with_unit_tests = true
deps = [
"//garnet/public/rust/packet",
"//garnet/public/rust/zerocopy",
"//third_party/rust-crates/rustc_deps:byteorder",
"//third_party/rust-crates/rustc_deps:failure",
"//third_party/rust-crates/rustc_deps:log",
"//third_party/rust-crates/rustc_deps:rand"
]
}