diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-02-17 10:29:29 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2017-02-17 10:29:29 +0100 |
commit | 6d8364afcf62d3b8add50e0935da08cf968804c2 (patch) | |
tree | b1d5790b480c0336c1ec0011903dc6e8f504d094 /testing/Cargo.toml | |
parent | 17d1d5a13977b808d43b73243a7979e8ad6c5e3a (diff) | |
download | askama-6d8364afcf62d3b8add50e0935da08cf968804c2.tar.gz askama-6d8364afcf62d3b8add50e0935da08cf968804c2.tar.bz2 askama-6d8364afcf62d3b8add50e0935da08cf968804c2.zip |
Bring back path for iternal dependencies
Diffstat (limited to 'testing/Cargo.toml')
-rw-r--r-- | testing/Cargo.toml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 3b17565..1e21082 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -6,8 +6,8 @@ workspace = ".." build = "build.rs" [dependencies] -askama = "0.1" -askama_derive = "0.1" +askama = { path = "../askama", version = "0.1" } +askama_derive = { path = "../askama_derive", version = "0.1" } [build-dependencies] -askama = "0.1" +askama = { path = "../askama", version = "0.1" } |