diff --git a/BUILD.gn b/BUILD.gn index 824e6d23f297ca4744ef535e621092db6289d647..215fee8878d9b9f13c7d9040903b77d51928de3c 100644 --- a/BUILD.gn +++ b/BUILD.gn @@ -1,25 +1,25 @@ # Copyright 2018 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. - + # This file is currently a stopgap for building on Fuchsia # contact bwb@google.com if you are running into problems with # how it is mirrored - + import("//build/rust/rustc_library.gni") - + rustc_library("rustyline") { name = "rustyline" edition = "2015" deps = [ "//garnet/public/rust/fuchsia-device", "//garnet/public/rust/fuchsia-zircon", - - "//third_party/rust-crates/rustc_deps:log", - "//third_party/rust-crates/rustc_deps:libc", - "//third_party/rust-crates/rustc_deps:memchr", - "//third_party/rust-crates/rustc_deps:unicode-segmentation", - "//third_party/rust-crates/rustc_deps:unicode-width", - "//third_party/rust-crates/rustc_deps:utf8parse", + + "//third_party/rust_crates:log", + "//third_party/rust_crates:libc", + "//third_party/rust_crates:memchr", + "//third_party/rust_crates:unicode-segmentation", + "//third_party/rust_crates:unicode-width", + "//third_party/rust_crates:utf8parse", ] }