From f154828900b8ff41035fc156d3a16295853122e6 Mon Sep 17 00:00:00 2001 From: Maciej Hirsz Date: Wed, 20 Mar 2019 21:05:41 +0100 Subject: [PATCH] Release v0.5.0 --- Cargo.lock | 14 +++++++++++++- ramhorns/Cargo.toml | 3 +-- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 850fbf3..0d636e6 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -345,7 +345,7 @@ version = "0.5.0" dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", "pulldown-cmark 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", - "ramhorns-derive 0.5.0", + "ramhorns-derive 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -358,6 +358,17 @@ dependencies = [ "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "ramhorns-derive" +version = "0.5.0" +source = "registry+https://github.com/rust-lang/crates.io-index" +dependencies = [ + "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", + "proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)", + "quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)", + "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", +] + [[package]] name = "rand" version = "0.6.5" @@ -781,6 +792,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum pulldown-cmark 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "fa4987312f985c300f4d68d208a9e4b646268140b6dbe83388c09652cc19ed3f" "checksum quick-error 1.2.2 (registry+https://github.com/rust-lang/crates.io-index)" = "9274b940887ce9addde99c4eee6b5c44cc494b182b97e73dc8ffdcb3397fd3f0" "checksum quote 0.6.11 (registry+https://github.com/rust-lang/crates.io-index)" = "cdd8e04bd9c52e0342b406469d494fcb033be4bdbe5c606016defbb1681411e1" +"checksum ramhorns-derive 0.5.0 (registry+https://github.com/rust-lang/crates.io-index)" = "64b3a6039d79d457d97d977da3f72ea190527daac2fdd28b822df0346d666563" "checksum rand 0.6.5 (registry+https://github.com/rust-lang/crates.io-index)" = "6d71dacdc3c88c1fde3885a3be3fbab9f35724e6ce99467f7d9c5026132184ca" "checksum rand_chacha 0.1.1 (registry+https://github.com/rust-lang/crates.io-index)" = "556d3a1ca6600bfcbab7c7c91ccb085ac7fbbcd70e008a98742e7847f4f7bcef" "checksum rand_core 0.3.1 (registry+https://github.com/rust-lang/crates.io-index)" = "7a6fdeb83b075e8266dcc8762c22776f6877a63111121f5f8c7411e5be7eed4b" diff --git a/ramhorns/Cargo.toml b/ramhorns/Cargo.toml index fd76004..cbbf955 100644 --- a/ramhorns/Cargo.toml +++ b/ramhorns/Cargo.toml @@ -14,8 +14,7 @@ categories = ["template-engine"] [dependencies] fnv = "1.0" pulldown-cmark = "0.4" -# ramhorns-derive = { version = "0.4.0", optional = true } -ramhorns-derive = { path = "../ramhorns-derive", optional = true } +ramhorns-derive = { version = "0.5.0", optional = true } [features] default = ["export_derive"]