unsafe-code-guidelines VS miri

Compare unsafe-code-guidelines vs miri and see what are their differences.

unsafe-code-guidelines

Forum for discussion about what unsafe code can and can't do (by rust-lang)

miri

An interpreter for Rust's mid-level intermediate representation (by rust-lang)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
unsafe-code-guidelines miri
74 121
640 3,955
1.3% 2.3%
6.9 10.0
about 1 month ago 6 days ago
Rust
Apache License 2.0 Apache License 2.0
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.

unsafe-code-guidelines

Posts with mentions or reviews of unsafe-code-guidelines. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-01-16.
  • Passing nothing is surprisingly difficult
    2 projects | news.ycombinator.com | 16 Jan 2024
    Useful context on the Rust side is this issue [1]. It sounds like some of the author's concerns are addressed already.

    [1]: https://github.com/rust-lang/unsafe-code-guidelines/issues/4...

  • Blog Post: Non-Send Futures When?
    2 projects | /r/rust | 10 Dec 2023
    Is this captured by one of the known soundness conflicts? If not then should consider adding it to the list.
  • Are crates like vcell and volatile cell still unsound?
    1 project | /r/rust | 5 Jun 2023
  • Question: Are there things for Unsafe Rust learn from Zig?
    2 projects | /r/rust | 1 Jun 2023
    There are some competing proposals for different memory models. Stacked borrows is the current proposal, but there are more work in the approproate WG.
  • Let's thank who have helped us in the Rust Community together!
    9 projects | /r/rust | 28 May 2023
    Thank you /u/RalfJung for bringing formal methods to Rust, both through models like Stacked Borrows, by developing miri, and by working on unsafe-code-guidelines which aims to specify exactly what is and isn't allowed in unsafe code (surprisingly, it's an open question as 2023!)
  • Questions about ownership rule
    2 projects | /r/rust | 23 May 2023
  • Noob Here: Why doesn't this work?
    1 project | /r/rust | 16 Apr 2023
    You could imagine some way to make this safe for example automatically convert &'short &'long mut T to &'short &'short T, but it's non-trivial to prove they are safe at all, not to mention ensuring this is correctly implemented in the compiler. If you're interested there's also a discussion on whether the opposite (& & T to & &mut T) is sound here.
  • When Zig is safer and faster than (unsafe) Rust
    3 projects | /r/rust | 7 Mar 2023
    Agreed! MIRI is so good, it still feels like magic to me. It also comforts me that the Rust team takes improving unsafe semantics seriously, with the past Unsafe Code Guidelines WG and today's operational semantics team (t-opsem).
  • Safety and Soundness in Rust
    5 projects | news.ycombinator.com | 5 Mar 2023
    I think there are some aspects of this rule that are still undecided. See for example:

    - https://github.com/rust-lang/unsafe-code-guidelines/issues/8...

    - https://github.com/rust-lang/miri/issues/2732

  • I wanna be a crab.
    16 projects | /r/rust | 27 Feb 2023
    C is much better specified than unsafe Rust. Some things are just not worked out yet in Rust. This may sometimes even bite very experienced devs, such as this issue with Box's aliasing semantics, which tripped up the author of left-right.

miri

Posts with mentions or reviews of miri. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-30.
  • Bytecode VMs in Surprising Places
    8 projects | news.ycombinator.com | 30 Apr 2024
    Miri [0] is an interpreter for the mid-level intermediate representation (MIR) generated by the Rust compiler. MIR is input for more processing steps of the compiler. However miri also runs MIR directly. This means miri is a VM. Of course it's not a bytecode VM, because MIR is not a bytecode AFAIK. I still think that miri is a interesting example.

    And why does miri exist?

    It is a lot slower. However it can check for some undefined behavior.

    [0]: https://github.com/rust-lang/miri

  • RFC: Rust Has Provenance
    3 projects | news.ycombinator.com | 31 Jan 2024
    Provenance is a dynamic property of pointer values. The actual underlying rules that a program must follow, even when using raw pointers and `unsafe`, are written in terms of provenance. Miri (https://github.com/rust-lang/miri) represents provenance as an actual value stored alongside each pointer's address, so it can check for violations of these rules.

    Lifetimes are a static approximation of provenance. They are erased after being validated by the borrow checker, and do not exist in Miri or have any impact on what transformations the optimizer may perform. In other words, the provenance rules allow a superset of what the borrow checker allows.

  • Mir: Strongly typed IR to implement fast and lightweight interpreters and JITs
    4 projects | news.ycombinator.com | 26 Dec 2023
  • Running rustc in a browser
    1 project | /r/rust | 12 Jul 2023
    There has been discussion of doing this with MIRI, which would be easier than all of rustc.
  • Piecemeal dropping of struct members causes UB? (Miri)
    1 project | /r/rust | 4 Jul 2023
    This issue has been fixed: https://github.com/rust-lang/miri/issues/2964
  • Erroneous UB Error with Miri?
    2 projects | /r/rust | 4 Jul 2023
  • I've incidentally created one of the fastest bounded MPSC queue
    8 projects | /r/rust | 26 Jun 2023
    Actually, I've done more advanced tests with MIRI (see https://github.com/rust-lang/miri/issues/2920 for example) which allowed me to fix some issues. I've also made the code compatible with loom, but I didn't found the time yet to write and execute loom tests. That's on the TODO-list, and I need to track it with an issue too.
  • Interested in "secure programming languages", both theory and practice but mostly practice, where do I start?
    2 projects | /r/ProgrammingLanguages | 17 Jun 2023
    He is one of the big brains behind Miri, which is a interpreter that runs on the MIR (compiler representation between human code and asm/machine code) and detects undefined behavior. Super useful tool for language safety, pretty interesting on its own.
  • Formal verification for unsafe code?
    2 projects | /r/rust | 16 Jun 2023
    I would also run your tests in Miri (https://github.com/rust-lang/miri) to try to cover more bases.
  • Ouroboros is also unsound
    3 projects | /r/rust | 11 Jun 2023
    You can run miri and it will tell you if the given run triggered any undefined behavior. It will not analyze it for every possible use of the code, but checking for the presence of this specific issue using it should be fairly simple.

What are some alternatives?

When comparing unsafe-code-guidelines and miri you can also consider the following projects:

tokio - A runtime for writing reliable asynchronous applications with Rust. Provides I/O, networking, scheduling, timers, ...

cons-list - Singly-linked list implementation in Rust

rust - Empowering everyone to build reliable and efficient software.

sanitizers - AddressSanitizer, ThreadSanitizer, MemorySanitizer

rfcs - RFCs for changes to Rust

x11rb - X11 bindings for the rust programming language, similar to xcb being the X11 C bindings

Rust-Full-Stack - Rust projects here are easy to use. There are blog posts for them also.

bevy - A refreshingly simple data-driven game engine built in Rust

nomicon - The Dark Arts of Advanced and Unsafe Rust Programming