mrsbfh

Matrix-Rust-SDK-Bot-Framework-Helper
git clone git://archive.git.mtrnord.blog/MTRNord/mrsbfh.git
Log | Files | Refs | README

commit 3b8b50b9aa955b18b4f12a641c07e9abcc840e6f
parent 70b49bdb0c61119e9a9a36ba049c664f4be34a6b
Author: MTRNord <mtrnord1@gmail.com>
Date:   Thu,  4 Nov 2021 20:22:19 +0100

chore: Make release ready

Diffstat:
MREADME.md | 2+-
Mexample-bot/Cargo.toml | 4+++-
Mmrsbfh-macros/Cargo.toml | 6+++++-
Mmrsbfh/Cargo.toml | 13++++++++-----
4 files changed, 17 insertions(+), 8 deletions(-)

diff --git a/README.md b/README.md @@ -13,7 +13,7 @@ A toolkit for writing commandbots more efficient in rust for matrix. To use it you need to add mrsbfh ust like any regular create: ``` -mrsbfh = {git = "https://github.com/MTRNord/mrsbfh"} +mrsbfh = "0.1.0" ``` After that there are the possible helpers available that are further described in the docs. diff --git a/example-bot/Cargo.toml b/example-bot/Cargo.toml @@ -1,9 +1,11 @@ -cargo-features = ["edition2021"] [package] name = "example-bot" version = "0.1.0" authors = ["MTRNord <mtrnord1@gmail.com>"] edition = "2021" +license = "AGPL-3.0-or-later" +publish = false +repository = "https://github.com/MTRNord/mrsbfh" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/mrsbfh-macros/Cargo.toml b/mrsbfh-macros/Cargo.toml @@ -1,9 +1,13 @@ -cargo-features = ["edition2021"] [package] name = "mrsbfh-macros" version = "0.1.0" authors = ["MTRNord <mtrnord1@gmail.com>"] edition = "2021" +description = "Maros for the mrsbfh crate" +license = "AGPL-3.0-or-later" +repository = "https://github.com/MTRNord/mrsbfh" +keywords = ["matrix", "chat", "framework", "macros", "communication"] +categories = ["network-programming", "parsing"] [lib] proc-macro = true diff --git a/mrsbfh/Cargo.toml b/mrsbfh/Cargo.toml @@ -1,11 +1,14 @@ -cargo-features = ["edition2021"] [package] name = "mrsbfh" -version = "0.1.0" +version = "0.1.1" authors = ["MTRNord <mtrnord1@gmail.com>"] edition = "2021" - -# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html +description = "A toolkit for writing commandbots more efficient in rust for matrix." +license = "AGPL-3.0-or-later" +repository = "https://github.com/MTRNord/mrsbfh" +keywords = ["matrix", "chat", "framework", "simple", "communication"] +categories = ["network-programming"] +readme = "../README.md" [dependencies.matrix-sdk] version = "0.3" @@ -16,7 +19,7 @@ url = "2.2.1" thiserror = "1.0" # Command macros -mrsbfh-macros = {path = "../mrsbfh-macros", optional = true} +mrsbfh-macros = {version = "0.1.0", path = "../mrsbfh-macros", optional = true} tokio = { version = "1", features = ["full"] } tracing = "0.1"