blob: 940859d8a0e970676625a9cad5435847178f2ee5 [file] [log] [blame]
# Copyright 2023 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/host.gni")
import("//build/rust/rustc_library.gni")
assert(is_host, "Assembly libraries are host-only")
rustc_library("package_copy") {
edition = "2021"
name = "assembly_package_copy"
version = "0.1.0"
with_unit_tests = true
deps = [
"//src/lib/assembly/util",
"//src/sys/pkg/lib/fuchsia-merkle",
"//src/sys/pkg/lib/fuchsia-pkg",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:camino",
]
sources = [
"src/lib.rs",
"src/package_copy.rs",
]
test_deps = [ "//third_party/rust_crates:tempfile" ]
}