aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--README.md17
1 files changed, 1 insertions, 16 deletions
diff --git a/README.md b/README.md
index 129ad4a..31a73f3 100644
--- a/README.md
+++ b/README.md
@@ -68,23 +68,8 @@ First, add the following to your crate's `Cargo.toml`:
```toml
# in section [dependencies]
-askama = "0.7"
+askama = "0.8"
-# in section [build-dependencies]
-askama = "0.7"
-```
-
-Because Askama will generate Rust code from your template files,
-the crate will need to be recompiled when your templates change.
-This is supported by adding a build script, `build.rs`, to your crate.
-It needs askama as a build dependency:
-
-```rust
-extern crate askama;
-
-fn main() {
- askama::rerun_if_templates_changed();
-}
```
Now create a directory called `templates` in your crate root.