blob: 17f8e2029fad10deb5168c35a33496cbbd47c694 [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/components.gni")
import("//build/rust/rustc_library.gni")
rustc_library("lib") {
name = "rkf45"
edition = "2021"
with_unit_tests = true
deps = [ "//third_party/rust_crates:anyhow" ]
test_deps = [ "//src/lib/test_util" ]
sources = [ "src/lib.rs" ]
}
fuchsia_unittest_package("rkf45-tests") {
deps = [ ":lib_test" ]
}