hug 0.0.4

tui dashboard for uiio
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
try:
    cargo build
    target/debug/hug -- /bin/cat sample.log

version := `toml get Cargo.toml package.version --raw`
tag := "v" + version

bump:
    cargo set-version --bump patch

tag:
    git tag {{tag}}
    git push origin {{tag}}

release:
    cargo publish