blob: c40d9b2b89c582ae9d020ef65362500d461f1c20 [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/rust/rustc_binary.gni")
rustc_binary("mount") {
sources = [ "src/main.rs" ]
edition = "2021"
deps = [
"//sdk/fidl/fuchsia.device:fuchsia.device_rust",
"//sdk/fidl/fuchsia.sys2:fuchsia.sys2_rust",
"//sdk/lib/fdio",
"//src/lib/fidl/rust/fidl",
"//src/lib/fuchsia",
"//src/lib/fuchsia-component",
"//src/lib/zircon/rust:fuchsia-zircon",
"//src/storage/fidl/fuchsia.fs.realm:fuchsia.fs.realm_rust",
"//src/storage/lib/fs_management",
"//src/sys/lib/component_debug",
"//third_party/rust_crates:anyhow",
"//third_party/rust_crates:argh",
"//zircon/third_party/ulib/safemath",
]
}