1. 15 3月, 2014 1 次提交
    • A
      extra: Put the nail in the coffin, delete libextra · 58e4ab2b
      Alex Crichton 提交于
      This commit shreds all remnants of libextra from the compiler and standard
      distribution. Two modules, c_vec/tempfile, were moved into libstd after some
      cleanup, and the other modules were moved to separate crates as seen fit.
      
      Closes #8784
      Closes #12413
      Closes #12576
      58e4ab2b
  2. 15 2月, 2014 1 次提交
  3. 11 12月, 2013 1 次提交
    • J
      Make crate hash stable and externally computable. · b349036e
      Jack Moffitt 提交于
      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.
      b349036e
  4. 23 5月, 2013 1 次提交
  5. 02 2月, 2013 1 次提交
  6. 11 12月, 2012 1 次提交
  7. 12 9月, 2012 1 次提交
  8. 07 4月, 2012 1 次提交
    • H
      Use real crate name in crate_map name · 13686b67
      Haitao Li 提交于
      `use` statement may introduce an crate name alias. This patch always
      uses the link attrbute "name" as the crate's name when building the
      crate map.
      
      Closes #1706
      13686b67