blob: 8663ce43b7140ffd3e24176680d7ac3313d67279 [file] [log] [blame]
# 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:unicode-segmentation",
"//third_party/rust-crates/rustc_deps:unicode-width",
"//third_party/rust-crates/rustc_deps:encode_unicode",
]
}