summary refs log tree commit diff
path: root/src/libterm/terminfo/mod.rs
AgeCommit message (Collapse)AuthorLines
2014-06-05Fallout from the libcollections movementAlex Crichton-1/+1
2014-05-27std: Rename strbuf operations to stringRicho Healey-1/+1
[breaking-change]
2014-05-24core: rename strbuf::StrBuf to string::StringRicho Healey-4/+4
[breaking-change]
2014-05-22libstd: Remove `~str` from all `libstd` modules except `fmt` and `str`.Patrick Walton-2/+4
2014-05-16Some fixesCorey Richardson-1/+1
2014-05-16Update for BoxCorey Richardson-1/+1
2014-05-16Update for masterCorey Richardson-2/+3
2014-05-16term: add docs and windows supportCorey Richardson-0/+186
Closes #2807
2014-05-14libterm: Remove all uses of `~str` from `libterm`Patrick Walton-4/+4
2014-03-31term: Switch field privacy as necessaryAlex Crichton-4/+4
2014-03-24Documentation sprint: TerminfoOlle Jonsson-2/+5
2014-03-21test: Make manual changes to deal with the fallout from removal ofPatrick Walton-2/+2
`~[T]` in test, libgetopts, compiletest, librustdoc, and libnum.
2014-02-23Move std::{trie, hashmap} to libcollectionsAlex Crichton-1/+1
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.
2014-02-02Move term, terminfo out of extra.xales-0/+31
cc #8784