automation 0.1.1

Automation for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
dev:
    cargo run

build-win:
    cargo build  --release --target  x86_64-pc-windows-gnu


build:
    cargo build  --release --target x86_64-unknown-linux-musl

release-patch:
    cargo release patch --no-publish --execute

release-minor:
    cargo release minor --no-publish --execute

release-major:
    cargo release major --no-publish --execute