Crates.io | cargo_auto_lib |
lib.rs | cargo_auto_lib |
version | 2.4.8 |
source | src |
created_at | 2021-08-13 14:36:41.32693 |
updated_at | 2024-04-23 21:49:47.303076 |
description | Automation tasks coded in Rust language for the workflow of Rust projects |
homepage | https://bestia.dev |
repository | https://github.com/automation-tasks-rs/cargo_auto_lib |
max_upload_size | |
id | 435712 |
size | 212,724 |
Automation tasks coded in Rust language for the workflow of Rust projects
version: 2.4.8 date: 2024-04-23 author: Bestia.dev repository: GitHub
cargo_auto_lib is part of the automation_tasks_rs project
Hashtags: #maintained #ready-for-use #rustlang #automation #workflow
My projects on GitHub are more like a tutorial than a finished product: bestia-dev tutorials.
I recommend using the CRUSTDE - Containerized Rust Development Environment to write Rust projects on Linux, isolated from your system.
First, install the tool for task automation in Rust projects:
cargo install cargo-auto
# Generate a new Rust CLI project:
cargo auto new_cli hello_world
# Open the `hello_world` project in VSCode:
code hello_world
# Open the generated directory `automation_tasks_rs` as an independent rust project in VSCode.
code hello_world/automation_tasks_rs
Now we can analyze the automation code. There is already this dependency inside Cargo.toml
for our library:
cargo_auto_lib="2.0.2"
Review the code in automation_tasks_rs/main.rs
. The cl::
namespace is the alias for cargo_auto_lib
.
Example:
/// cargo build --release
fn task_release() {
let cargo_toml = CargoToml::read();
cl::auto_version_increment_semver_or_date();
cl::auto_cargo_toml_to_md();
cl::auto_lines_of_code("");
cl::run_shell_command("cargo fmt");
cl::run_shell_command("cargo build --release");
println!(
r#"
{YELLOW}After `cargo auto release`, run the compiled binary, examples and/or tests{RESET}
{GREEN}./target/release/{package_name} arg_1{RESET}
{YELLOW}if ok then{RESET}
{GREEN}cargo auto doc{RESET}
"#,
package_name = cargo_toml.package_name(),
);
}
You can see this function will increment the version in Cargo.toml
.
Then it will copy some data from Cargo.toml
to README.md (title, description, version, author,...).
It will count the lines of code and create badges in README.md.
Then comes the traditional Rust part: cargo fmt and cargo build --release.
Finally, it will show on the screen the instructions on how to continue developing.
Run (in your main rust project):
cargo auto release
Now open the README.md and you will see the data that this automation task copied from other places. Therefore you change this data only in one place, the automation task copies them wherever needed.
I want the tasks to exit immediately on any error. So I use unwrap() and panic!() a lot.
On purpose. And because I wrote this before I learned Rust error handling.
Read the development details in a separate md file:
DEVELOPMENT.md
Read the release changelog in a separate md file:
RELEASES.md
My open-source projects are free as a beer (MIT license).
I just love programming.
But I need also to drink. If you find my projects and tutorials helpful, please buy me a beer by donating to my PayPal.
You know the price of a beer in your local bar ;-)
So I can drink a free beer for your health :-)
Na zdravje! Alla salute! Prost! Nazdravlje! 🍻
//bestia.dev
//github.com/bestia-dev
//bestiadev.substack.com
//youtube.com/@bestia-dev-tutorials