summary refs log tree commit diff
path: root/src/test/auxiliary/inline_dtor.rs
AgeCommit message (Collapse)AuthorLines
2014-04-14Use new attribute syntax in python files in src/etc too (#13478)Manish Goregaokar-1/+1
2013-12-23rustc: Add a lint for the obsolete crate-level link attributeBrian Anderson-2/+0
2013-12-19Rename pkgid to crate_idCorey Richardson-1/+1
Closes #11035
2013-12-10Make crate hash stable and externally computable.Jack Moffitt-0/+2
This replaces the link meta attributes with a pkgid attribute and uses a hash of this as the crate hash. This makes the crate hash computable by things other than the Rust compiler. It also switches the hash function ot SHA1 since that is much more likely to be available in shell, Python, etc than SipHash. Fixes #10188, #8523.
2013-11-02fix cross-crate destructor inliningDaniel Micay-0/+18
Closes #7793