aboutsummaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorLibravatar Paul Woolcock <paul@woolcock.us>2018-01-29 10:05:44 -0500
committerLibravatar Dirkjan Ochtman <dirkjan@ochtman.nl>2018-01-29 16:11:50 +0100
commit0bc388145046750760e6a722629cb78b1e656652 (patch)
tree1d332c7befd1f289899b745746711c57cab6e01b /README.md
parent6a50939ec2b41b842e3f4d2b71c5792ca4db269b (diff)
downloadaskama-0bc388145046750760e6a722629cb78b1e656652.tar.gz
askama-0bc388145046750760e6a722629cb78b1e656652.tar.bz2
askama-0bc388145046750760e6a722629cb78b1e656652.zip
`build = "build.rs"` is no longer necessary
For all rust versions >= 1.19, cargo will assume `build = "build.rs"` if it sees a `build.rs` file in the same directory as the `Cargo.toml`
Diffstat (limited to '')
-rw-r--r--README.md3
1 files changed, 0 insertions, 3 deletions
diff --git a/README.md b/README.md
index 4c95078..efbf4b1 100644
--- a/README.md
+++ b/README.md
@@ -56,9 +56,6 @@ How to get started
First, add the following to your crate's `Cargo.toml`:
```toml
-# in section [package]
-build = "build.rs"
-
# in section [dependencies]
askama = "0.5"