diff --git a/Cargo.lock b/Cargo.lock index d0aa6f2..b0a187d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -325,7 +325,7 @@ name = "ramhorns" version = "0.4.0" dependencies = [ "fnv 1.0.6 (registry+https://github.com/rust-lang/crates.io-index)", - "ramhorns-derive 0.4.0", + "ramhorns-derive 0.4.0 (registry+https://github.com/rust-lang/crates.io-index)", ] [[package]] @@ -338,6 +338,17 @@ dependencies = [ "syn 0.15.26 (registry+https://github.com/rust-lang/crates.io-index)", ] +[[package]] +name = "ramhorns-derive" +version = "0.4.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" @@ -754,6 +765,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" "checksum proc-macro2 0.4.27 (registry+https://github.com/rust-lang/crates.io-index)" = "4d317f9caece796be1980837fd5cb3dfec5613ebdb04ad0956deea83ce168915" "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.4.0 (registry+https://github.com/rust-lang/crates.io-index)" = "c6cca0ab3e240d4360c1c8c6c39b6682535852e5a7eabe6b55c03665964d39c9" "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 68cef0f..b1486a5 100644 --- a/ramhorns/Cargo.toml +++ b/ramhorns/Cargo.toml @@ -13,8 +13,7 @@ categories = ["template-engine"] [dependencies] fnv = "1.0" -# ramhorns-derive = { version = "0.4.0", optional = true } -ramhorns-derive = { path = "../ramhorns-derive", optional = true } +ramhorns-derive = { version = "0.4.0", optional = true } [features] default = ["export_derive"]