this post was submitted on 30 Jul 2024
103 points (96.4% liked)

Rust

5771 readers
53 users here now

Welcome to the Rust community! This is a place to discuss about the Rust programming language.

Wormhole

!performance@programming.dev

Credits

  • The icon is a modified version of the official rust logo (changing the colors to a gradient and black background)

founded 1 year ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[โ€“] faho@lemmy.world 2 points 1 month ago* (last edited 1 month ago) (1 children)

fish links against pcre2, which is a C library (via the pcre2 crate).

(it used to also link against ncurses, now it uses the terminfo crate instead, which just reads the terminfo database in rust)

Of course there is a way to make fish distributable as almost a single file (https://github.com/fish-shell/fish-shell/pull/10367), which rust does make easier (rust-embed is frickin' cool), but these sorts of shenanigans would also be possible with C++ and aren't really a big driver of the rust port. It's more that cargo install would try to install it like that and so why not make that work?

Really, my issue here is that the article makes "making fish available on servers" this huge deal when fish has always been available on servers?

[โ€“] BatmanAoD@programming.dev 1 points 1 month ago

The phrasing "available on servers" does seem quite weird. It does seem that having a single, standalone binary is much easier with Rust than with C++, though.