blob: 4fc356bb6e7443d9d0963dd11b0f6a3d1a1da9c6 [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("netstack3-core") {
name = "netstack3_core"
version = "0.1.0"
edition = "2018"
with_unit_tests = true
__unstable_recovery_netstack_only_specialization_bypass = [ "specialization" ]
deps = [
"//garnet/lib/rust/never",
"//garnet/public/rust/packet",
"//garnet/public/rust/zerocopy",
"//garnet/public/rust/zerocopy/zerocopy-derive",
"//src/connectivity/network/netstack3/core/specialize-ip-macro",
"//third_party/rust_crates:byteorder",
"//third_party/rust_crates:failure",
"//third_party/rust_crates:log",
"//third_party/rust_crates:rand",
"//third_party/rust_crates:rand_xorshift",
]
}