| # Copyright 2022 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") |
| |
| # Ignore warnings because this is third-party code. |
| config("ignore_rust_warnings") { |
| rustflags = [ "-Awarnings" ] |
| } |
| |
| rustc_library("octets") { |
| name = "octets" |
| edition = "2018" |
| configs -= [ |
| "//build/config/rust:2018_idioms", |
| "//build/config:werror", |
| ] |
| configs += [ ":ignore_rust_warnings" ] |
| |
| sources = [ |
| "src/lib.rs", |
| ] |
| } |