diff --git a/Cargo.toml b/Cargo.toml index dbb2fd46218b11dc99c9ab320284a8e91cb512cf..c8b18134f81cb7cd9300e5d370fbc9d5d58e1651 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "big-brain" -version = "0.1.0" +version = "0.1.1" authors = ["Kat Marchán <kzm@zkat.tech>"] edition = "2018" description = "Rusty Utility AI library" @@ -8,6 +8,8 @@ license-file = "LICENSE.md" readme = "README.md" keywords = ["utility-ai", "specs", "ecs"] categories = ["game-development"] +repository = "https://github.com/zkat/big-brain" +homepage = "https://github.com/zkat/big-brain" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/big-brain-derive/Cargo.toml b/big-brain-derive/Cargo.toml index 7e517ba675c5b3ebe8658ffe6b66a24d80f15dde..6df78726b47af1dd2fcb80ef826e79cc618c52e6 100644 --- a/big-brain-derive/Cargo.toml +++ b/big-brain-derive/Cargo.toml @@ -1,12 +1,14 @@ [package] name = "big-brain-derive" -version = "0.1.0" +version = "0.1.1" authors = ["Kat Marchán <kzm@zkat.tech>"] edition = "2018" keywords = ["utility-ai", "specs", "ecs"] categories = ["game-development"] description = "Derive macros for the big-brain Utility AI library" license-file = "../LICENSE.md" +repository = "https://github.com/zkat/big-brain" +homepage = "https://github.com/zkat/big-brain" [lib] proc-macro = true @@ -14,6 +16,6 @@ proc-macro = true [dependencies] syn = "1.0.33" quote = "1.0.7" -big-brain = "0.0.1" +big-brain = "0.1.0" proc-macro2 = "1.0.18" darling = "0.10.2"