rust-cutil 1.0.25050201

cutil
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
SHELL := /bin/bash
HIDE ?= @

.PHONY: build

clean:
	$(HIDE)cargo clean

fix:
	$(HIDE)cargo fmt

build:
	$(HIDE)cargo build

publish:
	$(HIDE)cargo publish --registry crates-io