blob: 649a859b7e036d95fff4ba1e8341475f012c2ba7 [file] [log] [blame]
# Copyright 2021 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("ffx_pdk_lib") {
name = "ffx_pdk_lib"
edition = "2018"
with_unit_tests = true
deps = [
"//third_party/rust_crates:serde",
"//third_party/rust_crates:serde_json",
]
sources = [
"src/lib.rs",
"src/lock.rs",
]
}