-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
32 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
authors = ["kangalioo <[email protected]>"] | ||
edition = "2018" | ||
name = "poise" | ||
version = "0.4.1" | ||
version = "0.5.0" | ||
description = "A Discord bot framework for serenity" | ||
license = "MIT" | ||
repository = "https://github.com/kangalioo/poise/" | ||
|
@@ -12,7 +12,7 @@ tokio = { version = "1.21.1", default-features = false } # for async in general | |
futures-core = { version = "0.3.13", default-features = false } # for async in general | ||
futures-util = { version = "0.3.13", default-features = false } # for async in general | ||
once_cell = { version = "1.7.2", default-features = false, features = ["std"] } # to store and set user data | ||
poise_macros = { path = "macros", version = "0.4.0" } # remember to update the version on changes! | ||
poise_macros = { path = "macros", version = "0.5.0" } # remember to update the version on changes! | ||
async-trait = { version = "0.1.48", default-features = false } # various traits | ||
regex = { version = "1.6.0", default-features = false, features = ["std"] } # prefix | ||
log = { version = "0.4.14", default-features = false } # warning about weird state | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "poise_macros" | ||
version = "0.4.0" # remember to update the version | ||
version = "0.5.0" # remember to update the version | ||
authors = ["kangalioo <[email protected]>"] | ||
edition = "2018" | ||
description = "Internal macro implementation crate of poise" | ||
|