summaryrefslogtreecommitdiff
path: root/src/rust/smartlist/smartlist.rs
AgeCommit message (Collapse)Author
2019-01-16Bump copyright date to 2019Nick Mathewson
2018-08-16rust: run rustfmtcypherpunks
2018-06-20Update copyrights to 2018.Nick Mathewson
2018-01-04smartlist.rs: The libc::c_char type is not the same as i8.Nick Mathewson
The code had been using c_char and i8 interchangeably, but it turns out that c_char is only i8 on platforms where "char" is signed. On other platforms, c_char is u8. Fixes bug 24794; bug not on any released Tor.
2017-10-27Add missing copyright/license statements on all .rs filesNick Mathewson
(Yes, I have Chelsea's permission.)
2017-10-27cargo fmt; fix line length warningsChelsea Holland Komlo
2017-10-27refactor smartlist for readabilityChelsea Holland Komlo
limit scoping of unsafe, and other cleanup
2017-10-27rust implementation of protoverChelsea Holland Komlo