diff --git a/iron-maud/Cargo.toml b/iron-maud/Cargo.toml index 8ddf5be..b7f3797 100644 --- a/iron-maud/Cargo.toml +++ b/iron-maud/Cargo.toml @@ -1,11 +1,20 @@ [package] + name = "iron-maud" version = "0.1.0" authors = ["Chris Wong <lambda.fairy@gmail.com>"] +license = "MIT/Apache-2.0" +documentation = "https://lambda.xyz/maud/iron-maud" +homepage = "http://lfairy.gitbooks.io/maud/content/" +repository = "https://github.com/lfairy/maud" +description = """ +Maud integration for the Iron web framework. +""" + [dependencies] iron = "0.4.0" [dependencies.maud] path = "../maud" -version = "0.9.0" +version = "0.10.0" diff --git a/maud/Cargo.toml b/maud/Cargo.toml index 631f89e..1f90432 100644 --- a/maud/Cargo.toml +++ b/maud/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "maud" -version = "0.9.0" +version = "0.10.0" authors = ["Chris Wong <lambda.fairy@gmail.com>"] license = "MIT/Apache-2.0" diff --git a/maud_macros/Cargo.toml b/maud_macros/Cargo.toml index b2f448c..b0cd253 100644 --- a/maud_macros/Cargo.toml +++ b/maud_macros/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "maud_macros" -version = "0.9.2" +version = "0.10.0" authors = ["Chris Wong <lambda.fairy@gmail.com>"] license = "MIT/Apache-2.0" @@ -14,7 +14,7 @@ Compile-time HTML templates. [dependencies.maud] path = "../maud" -version = "=0.9.0" +version = "=0.10.0" [lib] name = "maud_macros" diff --git a/upload-docs b/upload-docs index de42a6e..6a8921b 100755 --- a/upload-docs +++ b/upload-docs @@ -3,7 +3,7 @@ set -e base="$(dirname "$(readlink -f $0)")" -cd "$base/maud_macros" +cd "$base/iron-maud" cargo clean cargo doc