Skip to content

Commit

Permalink
Prepare for crates.io publish
Browse files Browse the repository at this point in the history
  • Loading branch information
kangalio committed Apr 20, 2022
1 parent 93b1032 commit 3596d12
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ tokio = { version = "1.4.0", 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" }
poise_macros = { path = "macros", version = "0.1.0" } # remember to update the version on changes!
async-trait = { version = "0.1.48", default-features = false } # various traits
regex = { version = "1.5.4", default-features = false, features = ["std"] } # prefix
log = { version = "0.4.14", default-features = false } # warning about weird state
Expand Down
7 changes: 5 additions & 2 deletions macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
[package]
name = "poise_macros"
version = "0.1.0"
version = "0.1.0" # remember to update the version
authors = ["kangalioo <jannik.a.schaper@web.de>"]
edition = "2018"
description = "Internal macro implementation crate of poise"
license = "MIT"
repository = "https://github.com/kangalioo/poise/"

[lib]
proc-macro = true
Expand All @@ -11,4 +14,4 @@ proc-macro = true
syn = { version = "1.0.64", features = ["full", "fold"] }
quote = "1.0.9"
proc-macro2 = "1.0.24"
darling = "0.12.2"
darling = "0.12.2"

0 comments on commit 3596d12

Please sign in to comment.