blob: 5de1cb18396c0487c6b8e1da45cbd74ff9cc6d5a [file] [log] [blame]
# Copyright 2020 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("error") {
name = "ffx_error"
version = "0.1.0"
edition = "2018"
deps = [
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:thiserror",
]
sources = [ "src/lib.rs" ]
}