From 0bc388145046750760e6a722629cb78b1e656652 Mon Sep 17 00:00:00 2001 From: Paul Woolcock Date: Mon, 29 Jan 2018 10:05:44 -0500 Subject: `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` --- README.md | 3 --- testing/Cargo.toml | 1 - 2 files changed, 4 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" diff --git a/testing/Cargo.toml b/testing/Cargo.toml index 323635a..06fdf56 100644 --- a/testing/Cargo.toml +++ b/testing/Cargo.toml @@ -3,7 +3,6 @@ name = "askama_testing" version = "0.1.0" authors = ["Dirkjan Ochtman "] workspace = ".." -build = "build.rs" [features] default = [] -- cgit