slotmap VS min-sized-rust

Compare slotmap vs min-sized-rust and see what are their differences.

slotmap

Slotmap data structure for Rust (by orlp)

min-sized-rust

🦀 How to minimize Rust binary size 📦 (by johnthagen)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
slotmap min-sized-rust
14 101
1,025 7,410
- -
3.4 6.2
about 2 months ago about 1 month ago
Rust Rust
zlib License MIT License
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.

slotmap

Posts with mentions or reviews of slotmap. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-28.
  • Tree Borrows - A new aliasing model for Rust
    6 projects | /r/rust | 28 Mar 2023
    It looks like .get_disjoint_mut() from slotmap failed under stacked borrows, but seems to pass under tree borrows
  • Indexing vs Smart Pointers
    1 project | /r/rust | 22 Feb 2023
    I think slotmap is meant to solve this exact issue. Basically when you insert into a collection you get an Id:Version tuple as key. When you reuse a slot, next time the key will be Id:Version+1 and when you try to access the removed value by using Id:Version, it will return None. You can think about it as delayed invalidation.
  • Hey Rustaceans! Got a question? Ask here (5/2023)!
    19 projects | /r/rust | 30 Jan 2023
    Dunno about existing implementations, but it looks like it's a feature they'd accept: https://github.com/orlp/slotmap/issues/73
  • Unsafe is a bad practice?
    11 projects | /r/rust | 28 Jun 2022
    It's actually quite easy.
  • Rust is more portable than C for pngquant/libimagequant
    7 projects | /r/rust | 4 Jan 2022
  • Hey Rustaceans! Got an easy question? Ask here (50/2021)!
    4 projects | /r/rust | 14 Dec 2021
    You can use either slot map or slab to side step rust borrow checker. Example https://github.com/orlp/slotmap/blob/master/examples/rand_meld_heap.rs
  • Rust data structures with circular references
    3 projects | news.ycombinator.com | 13 Nov 2021
    I don't know, only have some theories.

    1. The name isn't particularly catchy or descriptive. It is the correct name for the data structure, but not too many people know the data structure.

    2. People don't even know what they're missing. It's not a very Google-able problem to begin with. Slotmap provides an interesting solution to (circular) ownership and safe allocator / weak pointer design problems, but people don't recognize that they're having them or that slotmap could help.

    As an example of this, the doubly linked list example (https://github.com/orlp/slotmap/blob/master/examples/doubly_...) can safely remove nodes from the linked list given their handle, in O(1), even from the middle, completely safely and correctly, even in the presence of double deletions or ABA memory re-use. You can't replicate this with just pointers, without introducing heavy refcounting solutions.

  • Is it possible to write anything using 100% safe Rust?
    4 projects | /r/rust | 5 Aug 2021
    Nope, it's perfectly safe: https://github.com/orlp/slotmap/blob/master/examples/doubly_linked_list.rs.
  • Syncing HashMap values amongst User
    2 projects | /r/rust | 6 Jul 2021
    I think keeping the relationship between child and parent elements in the node graph might be better accommodating better via a psuedo-ECS system, see https://www.reddit.com/r/rust/comments/cnjhup/idiomatic_way_to_reference_parent_struct/. The https://github.com/orlp/slotmap crate looks promising. I think I'm just going to ditch the global shared HashMap in favor of something that can better accommodate child/parent relations.
  • Beginner question: does it become easier to write datastructures with complex ownership semantics?
    2 projects | /r/rust | 14 Apr 2021
    I think the slotmap crate is similar to what you're trying to write: https://github.com/orlp/slotmap

min-sized-rust

Posts with mentions or reviews of min-sized-rust. 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
    This is a good guide on building small Rust binaries: https://github.com/johnthagen/min-sized-rust

    This talks about going to extreme lengths on making the smallest Rust binary possible, 400 bytes when it was written, https://darkcoding.net/software/a-very-small-rust-binary-ind...

    The thing is, you lose a lot of nice features when you do this, like panic unwinding, debug symbols, stdlib… for kernel and some embedded development it’s definitely important, but for most use cases, does it matter?

  • Rust wont save us, but its ideas will
    1 project | news.ycombinator.com | 9 Feb 2024
    Oh it was 137, haha. I will link you to this older comment of mine: https://news.ycombinator.com/item?id=29408906

    See also https://github.com/johnthagen/min-sized-rust

  • Making Rust binaries smaller by default
    8 projects | news.ycombinator.com | 23 Jan 2024
    Are you sure? If so then this is awesome news, but I'm a bit confused; the commit in that min-sized-rust repo adding `build-std` to the README was merged in August 2021: https://github.com/johnthagen/min-sized-rust/pull/30

    Are you saying that at that point the feature still hadn't "landed in Rust nightly" until recently? If so then what's the difference between a feature just being available in Rust nightly, vs having "landed"?

  • Was Rust Worth It?
    18 projects | news.ycombinator.com | 25 Oct 2023
    Rust binaries are by default nowhere close to 500MB. If they are not small enough for you, you can try https://github.com/johnthagen/min-sized-rust. By avoiding the formatting machinery and using `panic_immediate_abort` you can get about the size of C binaries.
  • Compiling Rust binaries for Windows 98 SE and more: a journey
    1 project | news.ycombinator.com | 9 Oct 2023
    A useful reference: https://github.com/johnthagen/min-sized-rust
  • How to minimize Rust binary size
    1 project | news.ycombinator.com | 23 Aug 2023
    1 project | news.ycombinator.com | 9 Jul 2023
  • Error on flashing embedded code to stm32f103
    2 projects | /r/rust | 10 Jul 2023
  • Tiny Binaries (2021)
    1 project | news.ycombinator.com | 16 Jun 2023
    That must be without stripping. Also there are ways to reduce binary size. See e.g. [min-sized-rust](https://github.com/johnthagen/min-sized-rust). I've gotten stripped binaries of small cli utils less than 400KiB without doing anything special, less than 150 KiB by customizing profile settings and compressing with upx, and less than 30 KiB by replacing the std with the libc as the link shows. Haven't tried with fltk though...
  • Shared libraries
    2 projects | /r/rust | 30 May 2023
    This is not quite what you're asking, but it does also address the underlying concern: https://github.com/johnthagen/min-sized-rust

What are some alternatives?

When comparing slotmap and min-sized-rust you can also consider the following projects:

rust-typed-arena - The arena, a fast but limited type of allocator

smartstring - Compact inlined strings for Rust.

slab - Slab allocator for Rust

Cargo - The Rust package manager

multi_mut - Methods on HashMap and BTreeMap for safely getting multiple mutable references to the contained values.

rustc_codegen_gcc - libgccjit AOT codegen for rustc

rust - Rust for the xtensa architecture. Built in targets for the ESP32 and ESP8266

c2rust - Migrate C code to Rust

stdx - The missing batteries of Rust

regex - An implementation of regular expressions for Rust. This implementation uses finite automata and guarantees linear time matching on all inputs.

nomicon - The Dark Arts of Advanced and Unsafe Rust Programming

embedded-graphics - A no_std graphics library for embedded applications