-
Notifications
You must be signed in to change notification settings - Fork 12.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move std::{trie, hashmap} to libcollections
These two containers are indeed collections, so their place is in libcollections, not in libstd. There will always be a hash map as part of the standard distribution of Rust, but by moving it out of the standard library it makes libstd that much more portable to more platforms and environments. This conveniently also removes the stuttering of 'std::hashmap::HashMap', although 'collections::HashMap' is only one character shorter.
- Loading branch information
1 parent
edf351e
commit 2a14e08
Showing
109 changed files
with
448 additions
and
436 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
2a14e08
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
saw approval from brson
at alexcrichton@2a14e08
2a14e08
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
merging alexcrichton/rust/move-hashmap = 2a14e08 into auto
2a14e08
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
alexcrichton/rust/move-hashmap = 2a14e08 merged ok, testing candidate = c250c16
2a14e08
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
all tests pass:
success: http://buildbot.rust-lang.org/builders/auto-mac-32-opt/builds/4422
success: http://buildbot.rust-lang.org/builders/auto-mac-32-nopt-c/builds/2264
success: http://buildbot.rust-lang.org/builders/auto-mac-32-nopt-t/builds/2265
success: http://buildbot.rust-lang.org/builders/auto-mac-64-opt/builds/4420
success: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-c/builds/3520
success: http://buildbot.rust-lang.org/builders/auto-mac-64-nopt-t/builds/3526
success: http://buildbot.rust-lang.org/builders/auto-linux-32-opt/builds/4435
success: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-c/builds/3523
success: http://buildbot.rust-lang.org/builders/auto-linux-32-nopt-t/builds/3529
success: http://buildbot.rust-lang.org/builders/auto-linux-64-opt/builds/4437
success: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-c/builds/3523
success: http://buildbot.rust-lang.org/builders/auto-linux-64-nopt-t/builds/3528
success: http://buildbot.rust-lang.org/builders/auto-linux-64-x-android/builds/3597
success: http://buildbot.rust-lang.org/builders/auto-linux-64-x-android-t/builds/1376
success: http://buildbot.rust-lang.org/builders/auto-win-32-opt/builds/4429
success: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-c/builds/3530
success: http://buildbot.rust-lang.org/builders/auto-win-32-nopt-t/builds/3536
success: http://buildbot.rust-lang.org/builders/auto-bsd-64-opt/builds/4197
2a14e08
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fast-forwarding master to auto = c250c16