Skip to content

Commit 3596d12

Browse files
committed
Prepare for crates.io publish
1 parent 93b1032 commit 3596d12

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ tokio = { version = "1.4.0", default-features = false } # for async in general
1313
futures-core = { version = "0.3.13", default-features = false } # for async in general
1414
futures-util = { version = "0.3.13", default-features = false } # for async in general
1515
once_cell = { version = "1.7.2", default-features = false, features = ["std"] } # to store and set user data
16-
poise_macros = { path = "macros" }
16+
poise_macros = { path = "macros", version = "0.1.0" } # remember to update the version on changes!
1717
async-trait = { version = "0.1.48", default-features = false } # various traits
1818
regex = { version = "1.5.4", default-features = false, features = ["std"] } # prefix
1919
log = { version = "0.4.14", default-features = false } # warning about weird state

macros/Cargo.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
[package]
22
name = "poise_macros"
3-
version = "0.1.0"
3+
version = "0.1.0" # remember to update the version
44
authors = ["kangalioo <jannik.a.schaper@web.de>"]
55
edition = "2018"
6+
description = "Internal macro implementation crate of poise"
7+
license = "MIT"
8+
repository = "https://github.com/kangalioo/poise/"
69

710
[lib]
811
proc-macro = true
@@ -11,4 +14,4 @@ proc-macro = true
1114
syn = { version = "1.0.64", features = ["full", "fold"] }
1215
quote = "1.0.9"
1316
proc-macro2 = "1.0.24"
14-
darling = "0.12.2"
17+
darling = "0.12.2"

0 commit comments

Comments
 (0)