uiio 0.0.4

stdio protocol for debugging
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
try:
    cargo run --example counter

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