1. 24 9月, 2013 16 次提交
  2. 23 9月, 2013 6 次提交
  3. 22 9月, 2013 8 次提交
  4. 21 9月, 2013 6 次提交
    • A
      Implement a web backend for rustdoc_ng · 4fd061c4
      Alex Crichton 提交于
      This large commit implements and `html` output option for rustdoc_ng. The
      executable has been altered to be invoked as "rustdoc_ng html <crate>" and
      it will dump everything into the local "doc" directory. JSON can still be
      generated by changing 'html' to 'json'.
      
      This also fixes a number of bugs in rustdoc_ng relating to comment stripping,
      along with some other various issues that I found along the way.
      
      The `make doc` command has been altered to generate the new documentation into
      the `doc/ng/$(CRATE)` directories.
      4fd061c4
    • L
      Document a few undocumented methos in Vector · e98bd9bb
      Luis de Bethencourt 提交于
      Closes #9379
      e98bd9bb
    • D
      drop `extra::par` · e753618b
      Daniel Micay 提交于
      This was a dead end experiment, and not a sensible way of implementing
      generic data parallelism. This also removes the `graph500-bfs.rs`
      benchmark because it relies on `extra::par`.
      
      Closes #5626
      e753618b
    • S
      std: add missing #[inline] annotation to the f64 neg method. · 7cb0c639
      Sébastien Crozet 提交于
      This was, somehow, missed by #8332.
      7cb0c639
    • G
      Fix example in std::Option · eb519b95
      Grigoriy 提交于
      eb519b95
    • A
      Invert --cfg debug to --cfg ndebug · 833a64d7
      Alex Crichton 提交于
      Many people will be very confused that their debug! statements aren't working
      when they first use rust only to learn that they should have been building with
      `--cfg debug` the entire time. This inverts the meaning of the flag to instead
      of enabling debug statements, now it disables debug statements.
      
      This way the default behavior is a bit more reasonable, and requires less
      end-user configuration. Furthermore, this turns on debug by default when
      building the rustc compiler.
      833a64d7
  5. 20 9月, 2013 4 次提交