diff --git a/Cargo.toml b/Cargo.toml index 5b450632ded0..b339627541c5 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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 diff --git a/macros/Cargo.toml b/macros/Cargo.toml index fad47d22035c..5f109a761e03 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -1,8 +1,11 @@ [package] name = "poise_macros" -version = "0.1.0" +version = "0.1.0" # remember to update the version authors = ["kangalioo "] edition = "2018" +description = "Internal macro implementation crate of poise" +license = "MIT" +repository = "https://github.com/kangalioo/poise/" [lib] proc-macro = true @@ -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" \ No newline at end of file +darling = "0.12.2"