-
Notifications
You must be signed in to change notification settings - Fork 901
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3920282
commit d18cd1d
Showing
3 changed files
with
75 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
[package] | ||
name = "rustfmt-bin" | ||
version = "0.4.0" | ||
authors = ["Nicholas Cameron <ncameron@mozilla.com>", "The Rustfmt developers"] | ||
description = "Tool to find and fix Rust formatting issues" | ||
repository = "https://github.com/rust-lang-nursery/rustfmt" | ||
readme = "README.md" | ||
license = "Apache-2.0/MIT" | ||
build = "build.rs" | ||
categories = ["development-tools"] | ||
|
||
[[bin]] | ||
name = "rustfmt" | ||
path = "src/main.rs" | ||
|
||
[dependencies] | ||
env_logger = "0.4" | ||
getopts = "0.2" | ||
rustfmt-config = { path = "../rustfmt-config" } | ||
rustfmt-core = { path = "../rustfmt-core" } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
// Copyright 2017 The Rust Project Developers. See the COPYRIGHT | ||
// file at the top-level directory of this distribution and at | ||
// http://rust-lang.org/COPYRIGHT. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
use std::env; | ||
use std::fs::File; | ||
use std::io::Write; | ||
use std::path::PathBuf; | ||
use std::process::Command; | ||
|
||
fn main() { | ||
let out_dir = PathBuf::from(env::var_os("OUT_DIR").unwrap()); | ||
|
||
File::create(out_dir.join("commit-info.txt")) | ||
.unwrap() | ||
.write_all(commit_info().as_bytes()) | ||
.unwrap(); | ||
} | ||
|
||
// Try to get hash and date of the last commit on a best effort basis. If anything goes wrong | ||
// (git not installed or if this is not a git repository) just return an empty string. | ||
fn commit_info() -> String { | ||
match (commit_hash(), commit_date()) { | ||
(Some(hash), Some(date)) => format!(" ({} {})", hash.trim_right(), date), | ||
_ => String::new(), | ||
} | ||
} | ||
|
||
fn commit_hash() -> Option<String> { | ||
Command::new("git") | ||
.args(&["rev-parse", "--short", "HEAD"]) | ||
.output() | ||
.ok() | ||
.and_then(|r| String::from_utf8(r.stdout).ok()) | ||
} | ||
|
||
fn commit_date() -> Option<String> { | ||
Command::new("git") | ||
.args(&["log", "-1", "--date=short", "--pretty=format:%cd"]) | ||
.output() | ||
.ok() | ||
.and_then(|r| String::from_utf8(r.stdout).ok()) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Looks like by getting rid of this last "#![feature(rustc_private)]", we can finally build rustfmt with lto :) 🎉