blob: dccb9cc14e8cc84bb6beb5603ef0183ba4f8941e [file] [log] [blame]
# Copyright 2018 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")
import("//build/test/test_package.gni")
import("//build/testing/environments.gni")
rustc_library("packet") {
name = "packet"
version = "0.1.0"
edition = "2018"
deps = [
"//garnet/lib/rust/never",
"//src/lib/zerocopy",
]
}
rustc_test("packet_test") {
version = "0.1.0"
edition = "2018"
name = "packet_lib_test"
deps = [
"//garnet/lib/rust/never",
"//src/lib/zerocopy",
"//third_party/rust_crates:rand",
]
}