diff options
| author | 2018-01-29 10:05:44 -0500 | |
|---|---|---|
| committer | 2018-01-29 16:11:50 +0100 | |
| commit | 0bc388145046750760e6a722629cb78b1e656652 (patch) | |
| tree | 1d332c7befd1f289899b745746711c57cab6e01b /testing | |
| parent | 6a50939ec2b41b842e3f4d2b71c5792ca4db269b (diff) | |
| download | askama-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-- | testing/Cargo.toml | 1 | 
1 files changed, 0 insertions, 1 deletions
| 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 <dirkjan@ochtman.nl>"]  workspace = ".." -build = "build.rs"  [features]  default = [] | 
