blob: ecda0906461e203267c86c7f9cefd61551dd819b [file] [log] [blame]
Joshua Liebow-Feesere4d8d4c2023-08-02 19:32:27 +00001# 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
5import("//build/rust/rustc_library.gni")
6
7rustc_library("replace-with") {
8 name = "replace-with"
9 with_unit_tests = true
10 version = "0.1.0"
Sarah Chan64bf58d2025-12-06 16:25:07 -080011 edition = "2024"
Joshua Liebow-Feesere4d8d4c2023-08-02 19:32:27 +000012
13 sources = [ "src/lib.rs" ]
14}
15
16group("tests") {
17 testonly = true
18 deps = [ ":replace-with_test" ]
19}