Skip to content

Commit

Permalink
chore: Make release ready
Browse files Browse the repository at this point in the history
  • Loading branch information
MTRNord committed Nov 4, 2021
1 parent 70b49bd commit 3b8b50b
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
4 changes: 3 additions & 1 deletion example-bot/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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

Expand Down
6 changes: 5 additions & 1 deletion mrsbfh-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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
Expand Down
13 changes: 8 additions & 5 deletions mrsbfh/Cargo.toml
Original file line number Diff line number Diff line change
@@ -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"
Expand All @@ -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"
Expand Down

0 comments on commit 3b8b50b

Please sign in to comment.