Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rollup of 7 pull requests #40098

Closed
wants to merge 22 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
7e0c3de
Remove `else`, unindent.
frewsxcv Feb 19, 2017
de2f7e1
Rewrite `match` to use combinators.
frewsxcv Feb 19, 2017
83fe48d
Remove `else`, unindent.
frewsxcv Feb 19, 2017
a97aed7
Remove unnecessary logic when finding simpilar `impl` candidates.
frewsxcv Feb 19, 2017
2436d73
Extract out error message generation.
frewsxcv Feb 19, 2017
10639d7
Add early return, remove `else`, unindent.
frewsxcv Feb 19, 2017
23d9211
Flatten `for` loop using iterator combinators.
frewsxcv Feb 19, 2017
a754ea6
Move `TraitRef` `impl` next to `struct` definition.
frewsxcv Feb 20, 2017
3617868
Add compile fail test for unboxed_closures feature
topecongiro Feb 23, 2017
cd7b0fc
Update feature-gate-unboxed-closures.rs
Feb 23, 2017
6aed773
Fix a typo
tclfs Feb 24, 2017
8c8eda8
Fix nightly-only experimental API display
GuillaumeGomez Feb 23, 2017
c4e858e
Merge branch 'master' into master
Feb 25, 2017
f059e1c
Add Cargo as a submodule
alexcrichton Feb 15, 2017
7803039
travis: Fuchsia builder
petrhosek Feb 17, 2017
985be4f
rustbuild: Add support for compiling Cargo
alexcrichton Feb 15, 2017
7254380
Rollup merge of #39917 - alexcrichton:build-cargo, r=brson
frewsxcv Feb 25, 2017
841c10c
Rollup merge of #39918 - petrhosek:fuchsia-ci, r=alexcrichton
frewsxcv Feb 25, 2017
c842a2f
Rollup merge of #39977 - frewsxcv:error-reporting-cleanup, r=eddyb
frewsxcv Feb 25, 2017
6323627
Rollup merge of #40047 - topecongiro:master, r=est31
frewsxcv Feb 25, 2017
e4cab9b
Rollup merge of #40057 - GuillaumeGomez:html-issue, r=frewsxcv
frewsxcv Feb 25, 2017
096b7ec
Rollup merge of #40078 - tclfs:patch-3, r=GuillaumeGomez
frewsxcv Feb 25, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,6 @@
[submodule "src/liblibc"]
path = src/liblibc
url = https://github.com/rust-lang/libc.git
[submodule "src/tools/cargo"]
path = src/tools/cargo
url = https://github.com/rust-lang/cargo
1 change: 1 addition & 0 deletions configure
Original file line number Diff line number Diff line change
Expand Up @@ -651,6 +651,7 @@ opt locked-deps 0 "force Cargo.lock to be up to date"
opt vendor 0 "enable usage of vendored Rust crates"
opt sanitizers 0 "build the sanitizer runtimes (asan, lsan, msan, tsan)"
opt dist-src 1 "when building tarballs enables building a source tarball"
opt cargo-openssl-static 0 "static openssl in cargo"

# Optimization and debugging options. These may be overridden by the release channel, etc.
opt_nosave optimize 1 "build optimized rust code"
Expand Down
Loading