Skip to content
  1. Jul 22, 2021
    • Michael Müller's avatar
      Implement `BuildMode` (#298) · b5f241f8
      Michael Müller authored
      * Implement `BuildMode`
      
      * Remove `ignore` since all tests are failing anyway
      
      * Switch to `--release`
      
      * Revert "Switch to `--release`"
      
      This reverts commit 3cb01e10.
      
      * Keep `BuildMode` enum
      
      * Improve readability
      
      * Update changelog
      
      * Make `rustfmt` always report todo's and fixme's
      
      * Remove todo comment
      
      * Fix tests
      b5f241f8
    • Hernando Castano's avatar
      Change default optimizations pass to focus on code size (#305) · f165b8c4
      Hernando Castano authored
      * Change default opitmization pass to focus on code size
      
      * Change default optimization level from `-Os` to `-Oz`
      
      * Update CHANGELOG
      f165b8c4
  2. Jul 20, 2021
  3. Jul 15, 2021
  4. Jul 13, 2021
  5. Jul 09, 2021
  6. Jul 05, 2021
  7. Jul 03, 2021
  8. Jun 17, 2021
  9. Jun 14, 2021
  10. Jun 11, 2021
  11. Jun 08, 2021
  12. Jun 07, 2021
  13. Jun 06, 2021
  14. May 31, 2021
  15. May 28, 2021
  16. May 27, 2021
  17. May 25, 2021
  18. May 13, 2021
  19. May 12, 2021
  20. May 10, 2021
  21. Apr 23, 2021
  22. Apr 22, 2021
  23. Apr 21, 2021
  24. Apr 20, 2021
    • Michael Müller's avatar
      Fix flaky CI test (#263) · 307de23e
      Michael Müller authored
      * Add fix
      
      * Revert "Add fix"
      
      This reverts commit 5c81fee5.
      
      * Generate unique contract names for tests
      
      * Fix test
      
      * Implement comments
      
      * Implement comments
      307de23e
  25. Apr 19, 2021
  26. Apr 16, 2021
  27. Apr 13, 2021
    • Michael Müller's avatar
      Fix `clippy:wrong_self_convention` (#256) · a8c85897
      Michael Müller authored
      error: methods with the following characteristics: (`to_*` and `self` type is `Copy`) usually take `self` by value
        --> src/workspace/profile.rs:75:22
         |
      75 |     fn to_toml_value(&self) -> value::Value {
         |                      ^^^^^
         |
         = note: `-D clippy::wrong-self-convention` implied by `-D warnings`
         = help: consider choosing a less ambiguous name
         = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention
      
      error: methods with the following characteristics: (`to_*` and `self` type is `Copy`) usually take `self` by value
         --> src/workspace/profile.rs:102:22
          |
      102 |     fn to_toml_value(&self) -> value::Value {
          |                      ^^^^^
          |
          = help: consider choosing a less ambiguous name
          = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention
      
      error: methods with the following characteristics: (`to_*` and `self` type is `Copy`) usually take `self` by value
         --> src/workspace/profile.rs:121:22
          |
      121 |     fn to_toml_value(&self) -> value::Value {
          |                      ^^^^^
          |
          = help: consider choosing a less ambiguous name
          = help: for further information visit https://rust-lang.github.io/rust-clippy/master/index.html#wrong_self_convention
      a8c85897
  28. Apr 12, 2021