crate-activity 0.2.0

This crate provides a way to monitor the usage for a set of crates.io crates
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
DEFAULT := run
#ARGS := -cphnbst -g3
#ARGS := 
ARGS := --all

default: $(DEFAULT)

run:
	cargo run -- $(ARGS)

build:
	cargo build

test:
	cargo test