Skip to content

Commit cd88dae

Browse files
authored
Merge pull request #26 from rust-lang/master
Sync to rust-lang/rust master
2 parents 494d83c + 66bf391 commit cd88dae

File tree

373 files changed

+2912
-2225
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

373 files changed

+2912
-2225
lines changed

.gitmodules

+1-1
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
[submodule "src/llvm-project"]
4444
path = src/llvm-project
4545
url = https://github.com/rust-lang/llvm-project.git
46-
branch = rustc/9.0-2019-07-12
46+
branch = rustc/9.0-2019-09-19
4747
[submodule "src/doc/embedded-book"]
4848
path = src/doc/embedded-book
4949
url = https://github.com/rust-embedded/book.git

Cargo.lock

+21-9
Original file line numberDiff line numberDiff line change
@@ -455,7 +455,7 @@ dependencies = [
455455
"itertools 0.8.0",
456456
"lazy_static 1.3.0",
457457
"matches",
458-
"pulldown-cmark",
458+
"pulldown-cmark 0.6.0",
459459
"quine-mc_cluskey",
460460
"regex-syntax",
461461
"semver",
@@ -1637,7 +1637,7 @@ dependencies = [
16371637
"num_cpus",
16381638
"tokio",
16391639
"tokio-codec",
1640-
"unicase 2.4.0",
1640+
"unicase 2.5.1",
16411641
]
16421642

16431643
[[package]]
@@ -1875,7 +1875,7 @@ dependencies = [
18751875
"log",
18761876
"memchr",
18771877
"open",
1878-
"pulldown-cmark",
1878+
"pulldown-cmark 0.5.3",
18791879
"regex",
18801880
"serde",
18811881
"serde_derive",
@@ -1897,7 +1897,7 @@ dependencies = [
18971897
"log",
18981898
"mdbook",
18991899
"memchr",
1900-
"pulldown-cmark",
1900+
"pulldown-cmark 0.5.3",
19011901
"rayon",
19021902
"regex",
19031903
"reqwest",
@@ -1957,7 +1957,7 @@ version = "0.3.13"
19571957
source = "registry+https://github.com/rust-lang/crates.io-index"
19581958
checksum = "3e27ca21f40a310bd06d9031785f4801710d566c184a6e15bad4f1d9b65f9425"
19591959
dependencies = [
1960-
"unicase 2.4.0",
1960+
"unicase 2.5.1",
19611961
]
19621962

19631963
[[package]]
@@ -2561,7 +2561,19 @@ dependencies = [
25612561
"bitflags",
25622562
"getopts",
25632563
"memchr",
2564-
"unicase 2.4.0",
2564+
"unicase 2.5.1",
2565+
]
2566+
2567+
[[package]]
2568+
name = "pulldown-cmark"
2569+
version = "0.6.0"
2570+
source = "registry+https://github.com/rust-lang/crates.io-index"
2571+
checksum = "85b0ad0d4c1702965ee6bb5b4ff5e71f83850b497d497e9444302987bf9e26a4"
2572+
dependencies = [
2573+
"bitflags",
2574+
"getopts",
2575+
"memchr",
2576+
"unicase 2.5.1",
25652577
]
25662578

25672579
[[package]]
@@ -3732,7 +3744,7 @@ name = "rustdoc"
37323744
version = "0.0.0"
37333745
dependencies = [
37343746
"minifier",
3735-
"pulldown-cmark",
3747+
"pulldown-cmark 0.5.3",
37363748
"rustc-rayon",
37373749
"tempfile",
37383750
]
@@ -4739,9 +4751,9 @@ dependencies = [
47394751

47404752
[[package]]
47414753
name = "unicase"
4742-
version = "2.4.0"
4754+
version = "2.5.1"
47434755
source = "registry+https://github.com/rust-lang/crates.io-index"
4744-
checksum = "a84e5511b2a947f3ae965dcb29b13b7b1691b6e7332cf5dbc1744138d5acb7f6"
4756+
checksum = "2e2e6bd1e59e56598518beb94fd6db628ded570326f0a98c679a304bd9f00150"
47454757
dependencies = [
47464758
"version_check",
47474759
]

RELEASES.md

+9
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,13 @@ Misc
6868
- [`rustc` will now warn about some incorrect uses of
6969
`mem::{uninitialized, zeroed}` that are known to cause undefined behaviour.][63346]
7070

71+
Compatibility Notes
72+
-------------------
73+
- Unfortunately the [`x86_64-unknown-uefi` platform can not be built][62785]
74+
with rustc 1.39.0.
75+
- The [`armv7-unknown-linux-gnueabihf` platform is also known to have
76+
issues][62896] for certain crates such as libc.
77+
7178
[60260]: https://github.com/rust-lang/rust/pull/60260/
7279
[61457]: https://github.com/rust-lang/rust/pull/61457/
7380
[61491]: https://github.com/rust-lang/rust/pull/61491/
@@ -79,7 +86,9 @@ Misc
7986
[62735]: https://github.com/rust-lang/rust/pull/62735/
8087
[62766]: https://github.com/rust-lang/rust/pull/62766/
8188
[62784]: https://github.com/rust-lang/rust/pull/62784/
89+
[62785]: https://github.com/rust-lang/rust/issues/62785/
8290
[62814]: https://github.com/rust-lang/rust/pull/62814/
91+
[62896]: https://github.com/rust-lang/rust/issues/62896/
8392
[63000]: https://github.com/rust-lang/rust/pull/63000/
8493
[63056]: https://github.com/rust-lang/rust/pull/63056/
8594
[63107]: https://github.com/rust-lang/rust/pull/63107/

0 commit comments

Comments
 (0)