tools

various tools I have been using throughout the years
Log | Files | Refs | README | LICENSE

commit 6030d5b80814cf1b12de67d610dcd8a7a681078a
parent 75df662240c1f4dd64303958a4b3584b55495bae
Author: mtmn <miro@haravara.org>
Date:   Sun, 26 Apr 2026 00:17:40 +0200

chore: rename lastfm_rs

Former-commit-id: 6e41d9f5b1b5cff81525e7f48fb635158e9552aa
Former-commit-id: b99d4947f1f2d8f0e8b544f1cca244d942c5f642
Former-commit-id: de4e5b1a41787d51852694e27011e1167b9a39dd
Diffstat:
MCargo.toml | 2+-
MMODULE.bazel | 2+-
Dlastfm-csv-export/BUILD | 7-------
Dlastfm-csv-export/Cargo.toml | 11-----------
Alastfm_rs/BUILD | 7+++++++
Alastfm_rs/Cargo.toml | 11+++++++++++
Rlastfm-csv-export/src/main.rs -> lastfm_rs/src/main.rs | 0
7 files changed, 20 insertions(+), 20 deletions(-)

diff --git a/Cargo.toml b/Cargo.toml @@ -3,7 +3,7 @@ resolver = "2" members = [ "diffamer", "hakunadata", - "lastfm-csv-export", + "lastfm_rs", "mack", "matchakey", "scores", diff --git a/MODULE.bazel b/MODULE.bazel @@ -53,7 +53,7 @@ crate.from_cargo( "//:mack/Cargo.toml", "//:scores/Cargo.toml", "//:virittaa/Cargo.toml", - "//:lastfm-csv-export/Cargo.toml", + "//:lastfm_rs/Cargo.toml", "//:matchakey/Cargo.toml", "//:battery-notify/Cargo.toml", ], diff --git a/lastfm-csv-export/BUILD b/lastfm-csv-export/BUILD @@ -1,7 +0,0 @@ -load("@crates//:defs.bzl", "all_crate_deps") -load("//bazel:rust.bzl", "rust_app") - -rust_app( - name = "lastfm-csv-export", - deps = all_crate_deps(), -) diff --git a/lastfm-csv-export/Cargo.toml b/lastfm-csv-export/Cargo.toml @@ -1,11 +0,0 @@ -[package] -name = "lastfm-csv-export" -version = "0.1.0" -edition = "2024" - -[dependencies] -clap = { version = "4.5", features = ["derive"] } -reqwest = { version = "0.13", features = ["blocking", "json"] } -serde = { version = "1.0", features = ["derive"] } -serde_json = "1.0" -csv = "1.4" diff --git a/lastfm_rs/BUILD b/lastfm_rs/BUILD @@ -0,0 +1,7 @@ +load("@crates//:defs.bzl", "all_crate_deps") +load("//bazel:rust.bzl", "rust_app") + +rust_app( + name = "lastfm_rs", + deps = all_crate_deps(), +) diff --git a/lastfm_rs/Cargo.toml b/lastfm_rs/Cargo.toml @@ -0,0 +1,11 @@ +[package] +name = "lastfm_rs" +version = "0.1.0" +edition = "2024" + +[dependencies] +clap = { version = "4.5", features = ["derive"] } +reqwest = { version = "0.13", features = ["blocking", "json"] } +serde = { version = "1.0", features = ["derive"] } +serde_json = "1.0" +csv = "1.4" diff --git a/lastfm-csv-export/src/main.rs b/lastfm_rs/src/main.rs