• vala@lemmy.world
    link
    fedilink
    English
    arrow-up
    4
    ·
    1 day ago

    Literally why? Not even criticizing rust but the GNU core utils are easily some of the most reliable and documented software tools ever written.

    Not to mention, looks like the rust core utils are MIT and not GPL.

  • Sgarcnl@lemmy.world
    link
    fedilink
    English
    arrow-up
    7
    arrow-down
    1
    ·
    edit-2
    2 days ago

    Archlinux usually is a bit more reasonable. I don’t understand the forcing. Just makes me love it (archlinux) more!

    • arjache@fedia.io
      link
      fedilink
      arrow-up
      53
      arrow-down
      4
      ·
      3 days ago

      Code written in Rust has been shown to have significantly fewer security vulnerabilities than code written in C. Distributions like Ubuntu ship a lot of security updates, so by switching to Rust-based utils, they can reduce their workload in the long run.

      • Harlehatschi@lemmy.ml
        link
        fedilink
        English
        arrow-up
        1
        ·
        1 day ago

        But looking at the security vulnerability records of gnu coreutils that wasn’t really needed. There were like a handful in the last 15 years… So I don’t really see a need or benefit here.

      • masterofn001@lemmy.ca
        link
        fedilink
        English
        arrow-up
        2
        arrow-down
        7
        ·
        edit-2
        2 days ago

        There’s probably some zero day exploit someone is holding onto until everything is rust and then, bam!. Yeah, that’s just silly to think. Just silly.

        • UnityDevice@lemmy.zip
          link
          fedilink
          English
          arrow-up
          7
          ·
          edit-2
          1 day ago

          The success of FOSS can in large part be attributed to copyleft licenses like the GPL. Without the protections of copyleft clauses, software just gets exploited by large corporations and end users are locked out. For just one example, if GNU software had used MIT, the entire free router movement (i.e ddwrt, openwrt and co.) would probably not exist today.

          See: Free Software Foundation, Inc. v. Cisco Systems, Inc..

          Edit: actually, I think by the time of this specific lawsuit, the sources for wrt54g were already released after community pressure, this article details the history a bit better.

        • Hawk@lemmynsfw.com
          link
          fedilink
          English
          arrow-up
          1
          arrow-down
          1
          ·
          22 hours ago

          In large part it’s a matter of opinions and different perspectives. A common consensus is libraries should be MIT and entire applications should be GPL. However, this is not held by all community members.

          Overall, Rust is easier to read and harder to fuck up, so there’s one argument in favour if it, in terms of community engagement. For an example of this, compare ls.c by Apple, GNU, FreeBSd and OpenBSD.

          On the other hand, I should imagine most people simply install ripgrep and fd anyway.

        • qaz@lemmy.world
          link
          fedilink
          English
          arrow-up
          19
          arrow-down
          1
          ·
          edit-2
          3 days ago

          Rust is better for writing multithreaded applications which means that the small amount of utilities that can utilize parallelism receive a significant speedup. uutils multithreaded sort was apparently 6x faster than the GNU utils single threaded version.

          P.S. I strongly doubt handwritten assembly is more efficient than modern C compilers.

          • jecxjo@midwest.social
            link
            fedilink
            English
            arrow-up
            6
            ·
            3 days ago

            P.S. I strongly doubt handwritten assembly is more efficient than modern C compilers.

            As with everything, it all depends.

            When writing super efficient assembly you write towards the destination and not necessarily to fit higher level language constructs. There are often ways to cut corners for aspects not needed, reduction in instructions and loops all based on well designed assembly.

            The problem is you aren’t going to do that for every single CPU instruction because it would take forever and not provide a good ROI. It is far more common to write 99% of your system code in C and then write just the parts that can really benefit from fine tuned assembly. And please note that unless you’re writing for an RTOS or something crazy critical on efficiency, its going to be even less assembly.

          • iopq@lemmy.world
            link
            fedilink
            English
            arrow-up
            4
            ·
            3 days ago

            In large applications maybe not, but in benchmarks there can be a perfectly optimized assembly

          • Possibly linux@lemmy.zip
            link
            fedilink
            English
            arrow-up
            2
            ·
            3 days ago

            My simple assembly program can rum circles around compilers. As long as something is small it is possible to optimize better than a C compiler.

          • qaz@lemmy.world
            link
            fedilink
            English
            arrow-up
            4
            ·
            3 days ago

            I’m not sure why people are downvoting you, since Fortran is known to be extremely performant when dealing with multidimensional arrays.

      • asdfasdfasdf@lemmy.world
        link
        fedilink
        English
        arrow-up
        3
        arrow-down
        3
        ·
        2 days ago

        No, it isn’t just hype. The hype is justified.

        Outside of security you have some very really world benefits, like performance gains in various scenarios as well as lots more people willing to contribute and a much better type system (more maintainability).

        • Hawk@lemmynsfw.com
          link
          fedilink
          English
          arrow-up
          2
          ·
          22 hours ago

          Exactly! I would never PR, extend or build off find.c, And I sure as shit I’m not gonna work on C or C++ in my own free time. However, Rust is really fun to use, and it’s got a great ecosystem. In this vein, this is a good thing for the community, and it’s not just hype.

          The Fish blog post discussed this and I think they had a good point when they were talking about how hard it was to get contributors from a large pool when they were working with C++.

          Without a doubt, anything you can do in Rust you can do in C and C++, but I think it’s fair to say the large majority of people are going to be more productive in Rust or at least have a more enjoyable development experience.