blob: 3d2da1086bd6ea70dad3f36e9ee86ea39e82aebc [file]
# Copyright 2026 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("termio") {
name = "termio"
edition = "2024"
with_unit_tests = true
sources = [ "src/lib.rs" ]
}
group("tests") {
testonly = true
deps = [ ":termio_test" ]
}