blob: a3aa64011cada35cec64bf00fbc36b27dfcc3b99 [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/crates/fuchsia-device",
"//garnet/public/rust/crates/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",
]
}