1. 02 1月, 2014 1 次提交
  2. 27 12月, 2013 8 次提交
  3. 24 12月, 2013 1 次提交
  4. 22 12月, 2013 1 次提交
  5. 19 12月, 2013 1 次提交
  6. 17 12月, 2013 1 次提交
    • K
      Detect stability attributes on methods. · 4f95dceb
      Kiet Tran 提交于
      If it's a trait method, this checks the stability attribute of the
      method inside the trait definition. Otherwise, it checks the method
      implementation itself.
      4f95dceb
  7. 15 12月, 2013 1 次提交
  8. 12 12月, 2013 1 次提交
  9. 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
  10. 10 12月, 2013 2 次提交
  11. 09 12月, 2013 1 次提交
  12. 08 12月, 2013 1 次提交
  13. 06 12月, 2013 1 次提交
  14. 01 12月, 2013 3 次提交
  15. 29 11月, 2013 1 次提交
  16. 28 11月, 2013 1 次提交
  17. 27 11月, 2013 3 次提交
  18. 26 11月, 2013 7 次提交
  19. 22 11月, 2013 1 次提交
  20. 20 11月, 2013 1 次提交
  21. 16 11月, 2013 1 次提交
  22. 14 11月, 2013 1 次提交
    • D
      make missing_doc lint respect the visibility rules · 1f7eb4f9
      David Creswick 提交于
      Previously, the `exported_items` set created by the privacy pass was
      incomplete. Specifically, it did not include items that had been defined
      at a private path but then `pub use`d at a public path. This commit
      finds all crate exports during the privacy pass. Consequently, some code
      in the reachable pass and in rustdoc is no longer necessary. This commit
      then removes the separate `MissingDocLintVisitor` lint pass, opting to
      check missing_doc lint in the same pass as the other lint checkers using
      the visibility result computed by the privacy pass.
      
      Fixes #9777.
      1f7eb4f9