diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-03-06 22:40:04 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-03-06 22:40:04 +0100 |
commit | 664398b225fe916cc0b2b74047e8aea060ea9214 (patch) | |
tree | 9943ad33c662fe2a3fbc7434bae8dfefe0d6bb54 /Cargo.lock | |
parent | 0efd0c5cc55eb016472947c56e22e7ffe87ed9d4 (diff) | |
download | askama-664398b225fe916cc0b2b74047e8aea060ea9214.tar.gz askama-664398b225fe916cc0b2b74047e8aea060ea9214.tar.bz2 askama-664398b225fe916cc0b2b74047e8aea060ea9214.zip |
Hide askama_derive dependency inside askama (fixes #2)
Diffstat (limited to 'Cargo.lock')
-rw-r--r-- | Cargo.lock | 6 |
1 files changed, 2 insertions, 4 deletions
@@ -3,22 +3,20 @@ name = "askama_testing" version = "0.1.0" dependencies = [ "askama 0.2.1", - "askama_derive 0.2.1", ] [[package]] name = "askama" version = "0.2.1" dependencies = [ - "nom 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", - "syn 0.11.8 (registry+https://github.com/rust-lang/crates.io-index)", + "askama_derive 0.2.1", ] [[package]] name = "askama_derive" version = "0.2.1" dependencies = [ - "askama 0.2.1", + "nom 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", "syn 0.11.8 (registry+https://github.com/rust-lang/crates.io-index)", ] |