From 8f1aac797b4e17ee4dcb3aec0f18d84e212b0a77 Mon Sep 17 00:00:00 2001 From: Vinzenz Schroeter Date: Sat, 8 Feb 2025 14:49:04 +0100 Subject: [PATCH] misc metadata tweaks --- README.md | 3 +++ crates/servicepoint/Cargo.toml | 1 + crates/servicepoint_binding_c/Cargo.toml | 1 + crates/servicepoint_binding_uniffi/Cargo.toml | 1 + flake.nix | 2 +- 5 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index c3dbbfa..72b7b38 100644 --- a/README.md +++ b/README.md @@ -31,9 +31,12 @@ Take a look at the contained crates for language specific information: - tanks game (C#): [servicepoint-tanks](https://github.com/kaesaecracker/cccb-tanks-cs) - cellular automata slideshow (rust): [servicepoint-life](https://github.com/kaesaecracker/servicepoint-life) - partial typescript implementation inspired by this library and browser stream: [cccb-servicepoint-browser](https://github.com/SamuelScheit/cccb-servicepoint-browser) +- a CLI: [servicepoint-cli](https://git.berlin.ccc.de/servicepoint/servicepoint-cli) To add yourself to the list, open a pull request. +You can also check out [awesome-servicepoint](https://github.com/stars/kaesaecracker/lists/awesome-servicepoint) for a bigger collection of projects, including some not related to this library. + ## Contributing See [CONTRIBUTING.md](CONTRIBUTING.md). diff --git a/crates/servicepoint/Cargo.toml b/crates/servicepoint/Cargo.toml index a167b16..901c244 100644 --- a/crates/servicepoint/Cargo.toml +++ b/crates/servicepoint/Cargo.toml @@ -8,6 +8,7 @@ description = "A rust library for the CCCB Service Point Display." homepage = "https://docs.rs/crate/servicepoint" repository = "https://github.com/cccb/servicepoint" readme = "README.md" +keywords = ["cccb", "cccb-servicepoint"] [lib] crate-type = ["rlib"] diff --git a/crates/servicepoint_binding_c/Cargo.toml b/crates/servicepoint_binding_c/Cargo.toml index 27acabc..140b15e 100644 --- a/crates/servicepoint_binding_c/Cargo.toml +++ b/crates/servicepoint_binding_c/Cargo.toml @@ -9,6 +9,7 @@ homepage = "https://docs.rs/crate/servicepoint_binding_c" repository = "https://github.com/cccb/servicepoint" readme = "README.md" links = "servicepoint" +keywords = ["cccb", "cccb-servicepoint", "cbindgen"] [lib] crate-type = ["staticlib", "cdylib", "rlib"] diff --git a/crates/servicepoint_binding_uniffi/Cargo.toml b/crates/servicepoint_binding_uniffi/Cargo.toml index 3c52369..d1fb803 100644 --- a/crates/servicepoint_binding_uniffi/Cargo.toml +++ b/crates/servicepoint_binding_uniffi/Cargo.toml @@ -8,6 +8,7 @@ description = "C bindings for the servicepoint crate." homepage = "https://docs.rs/crate/servicepoint_binding_c" repository = "https://github.com/cccb/servicepoint" #readme = "README.md" +keywords = ["cccb", "cccb-servicepoint", "uniffi"] [lib] crate-type = ["cdylib"] diff --git a/flake.nix b/flake.nix index d3303e4..ca2a790 100644 --- a/flake.nix +++ b/flake.nix @@ -1,5 +1,5 @@ { - description = "Flake for servicepoint-simulator"; + description = "Flake for the servicepoint library."; inputs = { nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";