Announcement

Collapse
No announcement yet.

Rust 1.26 Continues With Speed Improvements, Adds Support For 128-Bit Integers

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Rust 1.26 Continues With Speed Improvements, Adds Support For 128-Bit Integers

    Phoronix: Rust 1.26 Continues With Speed Improvements, Adds Support For 128-Bit Integers

    Rust 1.26 is out today as the newest version of this popular systems programming language...

    Phoronix, Linux Hardware Reviews, Linux hardware benchmarks, Linux server benchmarks, Linux benchmarking, Desktop Linux, Linux performance, Open Source graphics, Linux How To, Ubuntu benchmarks, Ubuntu hardware, Phoronix Test Suite

  • #2
    I am waiting for non-lexical lifetime support before giving it a try again. Currently the borrow checker is way too anal, making programming in rust not very enjoyable.

    Comment


    • #3
      Originally posted by log0 View Post
      I am waiting for non-lexical lifetime support before giving it a try again. Currently the borrow checker is way too anal, making programming in rust not very enjoyable.
      It's a good point, but I think it's important for developers to realize that this day in age it's important for software to be secure. It feels like there should be a better way to accomplish it though.

      Comment


      • #4
        Originally posted by michal
        maybe it's time to reread documentation, find some decent web framework and try to use it. go also looks promising.
        My thoughts exactly. I really enjoy reading burntsushi's blog (Rust and Go).

        More info on learning Rust just in case anyone is trying the same thing.

        Comment


        • #5
          Have someone tried Redox - Rust OS?

          Comment


          • #6
            waiting for the next release.

            Comment


            • #7
              Originally posted by nikolobok View Post
              Have someone tried Redox - Rust OS?
              I did. Can't say much about it. It is working. lol
              ​​​​​​

              Comment


              • #8
                Originally posted by michal
                maybe it's time to reread documentation, find some decent web framework and try to use it. go also looks promising.
                If you want a fast web framework, Actix Web tops the TechEmpower web framework benchmarks, and is actually pretty nifty.
                Rocket is rather user-friendly, but it doesn't feature async I/O so it ranks very poorly.

                Comment


                • #9
                  Originally posted by log0 View Post
                  I am waiting for non-lexical lifetime support before giving it a try again. Currently the borrow checker is way too anal, making programming in rust not very enjoyable.
                  If you use Nightly, you can use NLL today just by adding #[feature(nll)] to the top of your lib.rs or main.rs file.
                  Personally, I don't have issues with the borrow checker as it is today. NLL will just save a few lines of code here and there.

                  Comment


                  • #10
                    Originally posted by michal
                    maybe it's time to reread documentation, find some decent web framework and try to use it. go also looks promising.
                    I hang out in /r/rust/ and, the most recent time someone asked about a good web framework, Actix web was the one that was recommended for people wanting to use stable-channel Rust.

                    Comment

                    Working...
                    X