From f6fe62cd08c826b373f2d3ca72c12710ee0565dc Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 24 Jan 2020 15:18:31 -0800 Subject: [PATCH] Drop to 2015 edition This crate doesn't contain any code, might as well support any compiler. --- Cargo.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Cargo.toml b/Cargo.toml index 6a1559b..f1d08db 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -2,12 +2,12 @@ name = "link-cplusplus" version = "0.0.0" authors = ["David Tolnay "] -edition = "2018" license = "MIT OR Apache-2.0" description = "Link libstdc++ or libc++ automatically or manually" repository = "https://github.com/dtolnay/link-cplusplus" documentation = "https://docs.rs/link-cplusplus" readme = "README.md" +build = "build.rs" [build-dependencies] cc = "1.0"