syncbuf VS magic-wormhole.rs

Compare syncbuf vs magic-wormhole.rs and see what are their differences.

syncbuf

A small library of append-only, thread-safe, lock-free data structures. (by bplevin36)

magic-wormhole.rs

Rust implementation of Magic Wormhole, with new features and enhancements (by magic-wormhole)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
syncbuf magic-wormhole.rs
3 5
5 612
- 6.4%
0.0 7.1
26 days ago 6 days ago
Rust Rust
MIT License European Union Public License 1.2
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.

syncbuf

Posts with mentions or reviews of syncbuf. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-04-25.
  • Is this code sound for concurrent use?
    1 project | /r/rust | 12 Jul 2021
    I was trying to do something similar a little while back and ended up writing the Synclist type in Syncbuf. This has the tradeoff that the elements are spread across non-contiguous chunks, so it can't be sliced. But it has the advantage of being able to contain any type, memory usage is monotonic, and "reallocation" is much cheaper since nothing is copied.
  • Noteworthy concurrent data structures?
    5 projects | /r/rust | 25 Apr 2021
    Since you asked, my little project in this area has been Syncbuf: https://github.com/bplevin36/syncbuf. It has 2 lock-free concurrent buffer types that are low-overhead by being append-only.
  • What's everyone working on this week (7/2021)?
    8 projects | /r/rust | 15 Feb 2021
    I was writing a toy virtual machine when I realized that in order to make it multi-threaded, it would be very helpful to maintain a global symbol table that allowed adding new symbols without invalidating references to old ones. No such thing appeared to exist yet, so I wrote it: https://github.com/bplevin36/syncbuf

magic-wormhole.rs

Posts with mentions or reviews of magic-wormhole.rs. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-18.
  • The Linux Kernel Prepares for Rust 1.77 Upgrade
    9 projects | news.ycombinator.com | 18 Feb 2024
    > Downloading 3GB of dependencies is not a thing that happens in the Rust ecosystem. Reality is orders of magnitude smaller than that.

    Assuming they're talking about the built size of dependencies that are left lying around after cargo builds a binary, they're really not exaggerating by much. I have no difficulty of believing that there are Rust projects that leave 3GB+ of dependency bloat on your file system after you build them.

    To take the last Rust project I built, magic-wormhole.rs [1], the source code I downloaded from Github was 1.6 MB. After running `cargo build --release`, the build directory is now 618 MB and there's another 179 MB in ~/.cargo, for a total of 800 MB used.

    All this to build a little command line program that sends and receives files over the network over a simple protocol (build size 14 MB). God forbid I build something actually complicated written in Rust, like a text editor.

    [1] https://github.com/magic-wormhole/magic-wormhole.rs

  • Efficient way of sharing files with someone without having to push
    2 projects | /r/git | 2 Sep 2022
  • qft: A tool to quickly transfer files over a holepunched P2P connection
    5 projects | /r/rust | 15 Aug 2022
    This is cool but it really should be using TCP. (You can do holepunching with TCP, check out https://github.com/magic-wormhole/magic-wormhole.rs/blob/master/src/transit.rs)
  • What’s everyone working on this week (8/2021)?
    11 projects | /r/rust | 21 Feb 2021
    I'm contributing for some magic-wormhole issues, the book of rust-clippy , and exercism rust track ... Thank Almighty Allah.
  • What's everyone working on this week (7/2021)?
    8 projects | /r/rust | 15 Feb 2021
    I'm working on some issues in magic-wormhole.rs and still looking around for other projects.

What are some alternatives?

When comparing syncbuf and magic-wormhole.rs you can also consider the following projects:

im-rs - Assorted immutable collection datatypes for Rust

denv - Dotenv (.env) loader written in rust 🦀