| Joshua Liebow-Feeser | e4d8d4c | 2023-08-02 19:32:27 +0000 | [diff] [blame] | 1 | # Copyright 2023 The Fuchsia Authors. All rights reserved. |
| 2 | # Use of this source code is governed by a BSD-style license that can be |
| 3 | # found in the LICENSE file. |
| 4 | |
| 5 | import("//build/rust/rustc_library.gni") |
| 6 | |
| 7 | rustc_library("replace-with") { |
| 8 | name = "replace-with" |
| 9 | with_unit_tests = true |
| 10 | version = "0.1.0" |
| Sarah Chan | 64bf58d | 2025-12-06 16:25:07 -0800 | [diff] [blame] | 11 | edition = "2024" |
| Joshua Liebow-Feeser | e4d8d4c | 2023-08-02 19:32:27 +0000 | [diff] [blame] | 12 | |
| 13 | sources = [ "src/lib.rs" ] |
| 14 | } |
| 15 | |
| 16 | group("tests") { |
| 17 | testonly = true |
| 18 | deps = [ ":replace-with_test" ] |
| 19 | } |