From 06d6ce601b364e7276330f463451c3c580a6d9e5 Mon Sep 17 00:00:00 2001 From: Juliandev02 Date: Sat, 8 Feb 2025 15:00:14 +0100 Subject: [PATCH 1/2] docs: update README to clarify run command and add dependency note --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0c2422e..1ef7f99 100644 --- a/README.md +++ b/README.md @@ -52,7 +52,8 @@ Perfect for small to medium infrastructures and developers seeking a straightfor ## How to run -It's really simple! Set up the config in `stbmon.toml` as you like, then run it with `cargo r -r`. The database is automatically created. +It's really simple! Set up the config in `stbmon.toml` as you like, then run it with `cargo run --release`. The database is automatically created. +Make sure that you have installed `libsqlite3-dev` (or similar) on your system. ## How to use From a1a5feac33667972926d1f85bd16d9ed73d73d1d Mon Sep 17 00:00:00 2001 From: Juliandev02 Date: Sat, 8 Feb 2025 15:01:02 +0100 Subject: [PATCH 2/2] chore: bump version to 0.1.1 in Cargo.toml --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 7455b62..93d662e 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "stb-mon" -version = "0.1.0" +version = "0.1.1" edition = "2021" [dependencies]