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 6 pull requests #68254

Merged
merged 23 commits into from
Jan 15, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
d59e9b4
Implement Cursor for linked lists. (RFC 2570).
crlf0710 Jan 11, 2020
091ba6d
Address review comments.
crlf0710 Jan 12, 2020
d2c509a
Address review comments.
crlf0710 Jan 12, 2020
06b9a73
Update APIs according to RFC change suggestions.
crlf0710 Jan 14, 2020
148c1bc
record generoator interior exprs in typecktable
csmoe Jan 14, 2020
b975601
suggest to limit lifetime of temporary borrow with let
csmoe Jan 14, 2020
5ad8b9e
update async-await send/sync test
csmoe Jan 14, 2020
064f888
Add unicode table generator
Mark-Simulacrum Jan 13, 2020
40ad877
Add support code for new unicode_data module
Mark-Simulacrum Jan 13, 2020
efcda04
Replace old tables with new unicode data
Mark-Simulacrum Jan 13, 2020
268a1ff
Account for `Path`s on `is_suggestable_infer_ty`
estebank Jan 15, 2020
4eb47de
wrap expr id into GeneratorInteriorTypeCause
csmoe Jan 15, 2020
312c3a0
remove redundant clones, found by clippy
matthiaskrgr Jan 15, 2020
406049d
Add test for issue-64848
JohnTitor Jan 14, 2020
ce8fed6
Add test for issue-65918
JohnTitor Jan 14, 2020
27a810c
Add test for issue-66473
JohnTitor Jan 14, 2020
3ba15bd
Set mir-opt-level to 3 to prevent regressions
JohnTitor Jan 14, 2020
1b7b8cb
Rollup merge of #68123 - crlf0710:linked_list_cursor, r=Amanieu
Dylan-DPC Jan 15, 2020
ae1e75b
Rollup merge of #68212 - csmoe:temp, r=estebank
Dylan-DPC Jan 15, 2020
6270e49
Rollup merge of #68232 - Mark-Simulacrum:unicode-tables, r=joshtriplett
Dylan-DPC Jan 15, 2020
2039d7e
Rollup merge of #68236 - JohnTitor:ice-tests, r=Centril
Dylan-DPC Jan 15, 2020
9de54fa
Rollup merge of #68237 - estebank:bad-bad-ice, r=petrochenkov
Dylan-DPC Jan 15, 2020
4ff6195
Rollup merge of #68252 - matthiaskrgr:redundant_clones, r=oli-obk
Dylan-DPC Jan 15, 2020
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
9 changes: 1 addition & 8 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,14 +34,7 @@ __pycache__/
# Created by default with `src/ci/docker/run.sh`:
/obj/
/rustllvm/
/src/libcore/unicode/DerivedCoreProperties.txt
/src/libcore/unicode/DerivedNormalizationProps.txt
/src/libcore/unicode/PropList.txt
/src/libcore/unicode/ReadMe.txt
/src/libcore/unicode/Scripts.txt
/src/libcore/unicode/SpecialCasing.txt
/src/libcore/unicode/UnicodeData.txt
/src/libcore/unicode/downloaded
/unicode-downloads
/target/
# Generated by compiletest for incremental:
/tmp/
Expand Down
17 changes: 17 additions & 0 deletions Cargo.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4953,6 +4953,16 @@ version = "1.10.0"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "612d636f949607bdf9b123b4a6f6d966dedf3ff669f7f045890d3a4a73948169"

[[package]]
name = "ucd-parse"
version = "0.1.4"
source = "registry+https://github.com/rust-lang/crates.io-index"
checksum = "ca6b52bf4da6512f0f07785a04769222e50d29639e7ecd016b7806fd2de306b4"
dependencies = [
"lazy_static 1.3.0",
"regex",
]

[[package]]
name = "ucd-trie"
version = "0.1.1"
Expand All @@ -4974,6 +4984,13 @@ dependencies = [
"version_check 0.1.5",
]

[[package]]
name = "unicode-bdd"
version = "0.1.0"
dependencies = [
"ucd-parse",
]

[[package]]
name = "unicode-bidi"
version = "0.3.4"
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ members = [
"src/tools/rustfmt",
"src/tools/miri",
"src/tools/rustdoc-themes",
"src/tools/unicode-table-generator",
]
exclude = [
"build",
Expand Down
Loading