After watching this video, I’m tempted to give it a try myself. The idea of swapping out traditional CLI tools for Rust-based alternatives is intriguing, and I’m curious to know if anyone has undertaken such an endeavor.

I’m also on the lookout for dotfiles that primarily feature configurations for Rust tools. I find it both educational and entertaining to explore other people’s configurations. I stumbled upon this repository, but I’m interested in discovering more if possible.

  • notfromhere@lemmy.one
    link
    fedilink
    arrow-up
    1
    arrow-down
    4
    ·
    11 months ago

    Utilities built in Rust have a higher potential for better security, all else being equal.

      • broface@lemm.ee
        link
        fedilink
        arrow-up
        1
        ·
        11 months ago

        I don’t really thing the security ‘guarantees’ of rust matter that much.

        I think it’s a better language to work in than C or C++, though. That’s not a reason to change utilities now, but a larger Rust ecosystem is always better in my humble opinion.

      • notfromhere@lemmy.one
        link
        fedilink
        arrow-up
        1
        arrow-down
        1
        ·
        edit-2
        11 months ago

        Yes that’s the major selling point in the Rust language in my opinion. Memory safety. Most of the security issues you hear about are because of mismanaged memory, specifically buffer overflows. My understanding is that Rust reduces risk of those by catching them at compile time.