<feed xmlns='http://www.w3.org/2005/Atom'>
<title>rust/src/libcoretest/fmt, branch try</title>
<subtitle>https://github.com/rust-lang/rust
</subtitle>
<id>http://git.dreamy.place/mirrors/rust/atom?h=try</id>
<link rel='self' href='http://git.dreamy.place/mirrors/rust/atom?h=try'/>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/'/>
<updated>2017-04-03T18:49:39+00:00</updated>
<entry>
<title>Move libXtest into libX/tests</title>
<updated>2017-04-03T18:49:39+00:00</updated>
<author>
<name>Stjepan Glavina</name>
<email>stjepang@gmail.com</email>
</author>
<published>2017-04-03T14:53:04+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=13c744f30d1540f36a6437224d16e3aea0a2ff71'/>
<id>urn:sha1:13c744f30d1540f36a6437224d16e3aea0a2ff71</id>
<content type='text'>
This change moves:

1. `libcoretest` into `libcore/tests`
2. `libcollectionstest` into `libcollections/tests`

This is a follow-up to #39561.
</content>
</entry>
<entry>
<title>Improve fmt float</title>
<updated>2017-02-07T09:58:34+00:00</updated>
<author>
<name>Son</name>
<email>leson.phung@gmail.com</email>
</author>
<published>2017-02-07T09:58:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=2ba0b65c27724b99f2624c4245698e8ef36a2cf2'/>
<id>urn:sha1:2ba0b65c27724b99f2624c4245698e8ef36a2cf2</id>
<content type='text'>
* Move to a separate float mod
* Add more tests for f64 f32 lower exp upper exp
* Use assert_eq for a clearer error message
</content>
</entry>
<entry>
<title>Adjust heuristics to better handle "{}..." format strings.</title>
<updated>2017-02-01T22:47:03+00:00</updated>
<author>
<name>Michał Krasnoborski</name>
<email>mkrdln@gmail.com</email>
</author>
<published>2017-02-01T22:47:03+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=7403ee9d07a1b096e9628871bd97e39f464c3aa5'/>
<id>urn:sha1:7403ee9d07a1b096e9628871bd97e39f464c3aa5</id>
<content type='text'>
</content>
</entry>
<entry>
<title>use `String::with_capacity` in `format!`</title>
<updated>2017-01-28T00:50:05+00:00</updated>
<author>
<name>Michał Krasnoborski</name>
<email>mkrdln@gmail.com</email>
</author>
<published>2017-01-27T03:51:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e74b55b9da5a163e02bbcbf97e7ea24d48742943'/>
<id>urn:sha1:e74b55b9da5a163e02bbcbf97e7ea24d48742943</id>
<content type='text'>
</content>
</entry>
<entry>
<title>std: Clean out deprecated APIs</title>
<updated>2016-03-12T20:31:13+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2016-03-07T23:42:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=b53764c73bd722ea22142bace6249d5950066253'/>
<id>urn:sha1:b53764c73bd722ea22142bace6249d5950066253</id>
<content type='text'>
Removes all unstable and deprecated APIs prior to the 1.8 release. All APIs that
are deprecated in the 1.8 release are sticking around for the rest of this
cycle.

Some notable changes are:

* The `dynamic_lib` module was moved into `rustc_back` as the compiler still
  relies on a few bits and pieces.
* The `DebugTuple` formatter now special-cases an empty struct name with only
  one field to append a trailing comma.
</content>
</entry>
<entry>
<title>cleanup int suffixes in libcoretest</title>
<updated>2016-03-11T03:12:56+00:00</updated>
<author>
<name>srinivasreddy</name>
<email>thatiparthysreenivas@gmail.com</email>
</author>
<published>2016-03-11T03:06:36+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=e1cc628549020207e07ce8271478f7baff602757'/>
<id>urn:sha1:e1cc628549020207e07ce8271478f7baff602757</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Implement fmt::Pointer for pointers to unsized types</title>
<updated>2016-02-08T19:08:19+00:00</updated>
<author>
<name>Kamal Marhubi</name>
<email>kamal@marhubi.com</email>
</author>
<published>2016-02-07T22:57:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=c5f73ed80c9c37cceaa25ed20c0f88f9d324bd8c'/>
<id>urn:sha1:c5f73ed80c9c37cceaa25ed20c0f88f9d324bd8c</id>
<content type='text'>
This allows printing pointers to unsized types with the {:p} formatting
directive. The following impls are extended to unsized types:
 - impl&lt;'a, T: ?Sized&gt; Pointer for &amp;'a T
 - impl&lt;'a, T: ?Sized&gt; Pointer for &amp;'a mut T
 - impl&lt;T: ?Sized&gt; Pointer for *const T
 - impl&lt;T: ?Sized&gt; Pointer for *mut T
 - impl&lt;T: ?Sized&gt; fmt::Pointer for Box&lt;T&gt;
 - impl&lt;T: ?Sized&gt; fmt::Pointer for Rc&lt;T&gt;
 - impl&lt;T: ?Sized&gt; fmt::Pointer for Arc&lt;T&gt;
</content>
</entry>
<entry>
<title>test: Deny warnings in {core,collections}test</title>
<updated>2016-01-31T00:19:37+00:00</updated>
<author>
<name>Alex Crichton</name>
<email>alex@alexcrichton.com</email>
</author>
<published>2016-01-31T00:19:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=ac83242ac9923212d093a4f38fb739eb54b1c8cd'/>
<id>urn:sha1:ac83242ac9923212d093a4f38fb739eb54b1c8cd</id>
<content type='text'>
Help cleans up our build a bit and stays in line with the rest of our crates
denying warnings traditionally.
</content>
</entry>
<entry>
<title>Add unused modules to libcoretest</title>
<updated>2015-10-16T19:15:23+00:00</updated>
<author>
<name>Florian Hahn</name>
<email>flo@fhahn.com</email>
</author>
<published>2015-10-15T19:07:20+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=510360de210a191e42283c603b7f6140d7cbf829'/>
<id>urn:sha1:510360de210a191e42283c603b7f6140d7cbf829</id>
<content type='text'>
</content>
</entry>
<entry>
<title>Fix negate_unsigned feature gate check</title>
<updated>2015-07-14T18:48:43+00:00</updated>
<author>
<name>Simonas Kazlauskas</name>
<email>git@kazlauskas.me</email>
</author>
<published>2015-07-13T22:03:24+00:00</published>
<link rel='alternate' type='text/html' href='http://git.dreamy.place/mirrors/rust/commit/?id=0c9e3dc75cf2b2d122af0596225594240ed254eb'/>
<id>urn:sha1:0c9e3dc75cf2b2d122af0596225594240ed254eb</id>
<content type='text'>
This commit fixes the negate_unsigned feature gate to appropriately
account for infered variables.

This is technically a [breaking-change].
</content>
</entry>
</feed>
