if-changed 0.3.4

A pre-submit for file changes.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
load("@crates_io//:defs.bzl", "crate_deps")
load("@rules_rust//rust:defs.bzl", "rust_binary")

package(default_visibility = ["//visibility:public"])

rust_binary(
    name = "if-changed",
    srcs = ["if-changed.rs"],
    deps = crate_deps([
        "clap",
        "git2",
    ]),
)