From 624ec51e8fec889b26ad4d6fd3b7c835a4ce388f Mon Sep 17 00:00:00 2001 From: Sebastian Thiel Date: Wed, 24 Jun 2015 16:34:53 +0200 Subject: [PATCH] chore(build.rs): moved into src/ dir --- Cargo.toml | 2 +- build.rs => src/build.rs | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename build.rs => src/build.rs (100%) diff --git a/Cargo.toml b/Cargo.toml index 636bb16..305ea84 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,7 +8,7 @@ description = "A partial oauth2 implementation, providing the 'device' authoriza documentation = "http://byron.github.io/yup-oauth2" keywords = ["google", "oauth", "v2"] license = "MIT" -build = "build.rs" +build = "src/build.rs" [dependencies] chrono = "*" diff --git a/build.rs b/src/build.rs similarity index 100% rename from build.rs rename to src/build.rs