diff options
author | René Kijewski <rene.kijewski@fu-berlin.de> | 2023-03-07 09:55:27 +0100 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2023-03-10 15:19:25 +0100 |
commit | d83d6abe2b6e1d7bd87f44b02516a40b057e2179 (patch) | |
tree | 3b1ce85d9dae48a41dbd4502ea34b10326ffd964 | |
parent | 4233b3114fd9db8a036b1744d1ddec070e37d145 (diff) | |
download | askama-d83d6abe2b6e1d7bd87f44b02516a40b057e2179.tar.gz askama-d83d6abe2b6e1d7bd87f44b02516a40b057e2179.tar.bz2 askama-d83d6abe2b6e1d7bd87f44b02516a40b057e2179.zip |
Tell user to use `cargo add`
Diffstat (limited to '')
-rw-r--r-- | README.md | 8 |
1 files changed, 3 insertions, 5 deletions
@@ -55,12 +55,10 @@ in a for-profit context, please consider supporting my open source work on How to get started ------------------ -First, add the following to your crate's `Cargo.toml`: - -```toml -# in section [dependencies] -askama = "0.11.2" +First, add the Askama dependency to your crate's `Cargo.toml`: +```sh +cargo add askama ``` Now create a directory called `templates` in your crate root. |