Update to 2017-06-22
This commit is contained in:
parent
4f835a12eb
commit
a2a8dd5cd7
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "core_io"
|
name = "core_io"
|
||||||
version = "0.1.20170615"
|
version = "0.1.20170622"
|
||||||
authors = ["The Rust Project Developers", "Jethro Beekman"]
|
authors = ["The Rust Project Developers", "Jethro Beekman"]
|
||||||
license = "MIT/Apache-2.0"
|
license = "MIT/Apache-2.0"
|
||||||
description = """
|
description = """
|
||||||
|
@ -333,3 +333,9 @@
|
|||||||
-Mapping("258ae6dd9b1a8ac97986852fc9f00f7687004ccb","3cb78259862d37da082f628af3ccb54edf264fd0")
|
-Mapping("258ae6dd9b1a8ac97986852fc9f00f7687004ccb","3cb78259862d37da082f628af3ccb54edf264fd0")
|
||||||
-Mapping("ad36c2f5528d617db66c244d8bcbfc4b36da0ca0","b4be4758361bf1b03410a523e8672b1c1fa7d385")
|
-Mapping("ad36c2f5528d617db66c244d8bcbfc4b36da0ca0","b4be4758361bf1b03410a523e8672b1c1fa7d385")
|
||||||
-Mapping("14481f72102ba2abb5f314d5537fee90352981c5","b4be4758361bf1b03410a523e8672b1c1fa7d385")
|
-Mapping("14481f72102ba2abb5f314d5537fee90352981c5","b4be4758361bf1b03410a523e8672b1c1fa7d385")
|
||||||
|
-Mapping("fe7227f6c8704f0186091085a14fd1027920e4bb","f5f74a22c94a7053d33c88d135f9fdc44fa2ea5b")
|
||||||
|
-Mapping("04145943a25c3b8c7e7d7fe8c2efb04f259c25fb","f5f74a22c94a7053d33c88d135f9fdc44fa2ea5b")
|
||||||
|
-Mapping("622e7e6487b6fb7fdbb901720cd4214f9179ed67","ecbb896b9eb2acadefde57be493e4298c1aa04a3")
|
||||||
|
-Mapping("445077963c55297ef1e196a3525723090fe80b22","f5f74a22c94a7053d33c88d135f9fdc44fa2ea5b")
|
||||||
|
-Mapping("10d7cb44c98f25c04dcefb6b6555237de8b8bd7e","f5f74a22c94a7053d33c88d135f9fdc44fa2ea5b")
|
||||||
|
-Mapping("78d8416caf65cfb50de61bb9423e9efa026bd45a","f5f74a22c94a7053d33c88d135f9fdc44fa2ea5b")
|
||||||
|
1627
patches/ecbb896b9eb2acadefde57be493e4298c1aa04a3.patch
Normal file
1627
patches/ecbb896b9eb2acadefde57be493e4298c1aa04a3.patch
Normal file
File diff suppressed because it is too large
Load Diff
1551
patches/f5f74a22c94a7053d33c88d135f9fdc44fa2ea5b.patch
Normal file
1551
patches/f5f74a22c94a7053d33c88d135f9fdc44fa2ea5b.patch
Normal file
File diff suppressed because it is too large
Load Diff
@ -28,14 +28,14 @@ impl<T> FakeBox<T> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Needed for older compilers, to ignore vec!/format! macros in tests
|
// Needed for older compilers, to ignore vec!/format! macros in tests
|
||||||
#[cfg(not(feature="collections"))]
|
#[cfg(not(any(feature="collections", feature = "alloc")))]
|
||||||
#[allow(unused)]
|
#[allow(unused)]
|
||||||
macro_rules! vec (
|
macro_rules! vec (
|
||||||
( $ elem : expr ; $ n : expr ) => { () };
|
( $ elem : expr ; $ n : expr ) => { () };
|
||||||
( $ ( $ x : expr ) , * ) => { () };
|
( $ ( $ x : expr ) , * ) => { () };
|
||||||
( $ ( $ x : expr , ) * ) => { () };
|
( $ ( $ x : expr , ) * ) => { () };
|
||||||
);
|
);
|
||||||
#[cfg(not(feature="collections"))]
|
#[cfg(not(any(feature="collections", feature = "alloc")))]
|
||||||
#[allow(unused)]
|
#[allow(unused)]
|
||||||
macro_rules! format {
|
macro_rules! format {
|
||||||
( $ ( $ arg : tt ) * ) => { () };
|
( $ ( $ arg : tt ) * ) => { () };
|
||||||
|
Loading…
Reference in New Issue
Block a user