once_self_cell VS miri

Compare once_self_cell vs miri and see what are their differences.

once_self_cell

Safe-to-use proc-macro-free self-referential structs in stable Rust. (by Voultapher)

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
once_self_cell miri
9 122
226 3,973
- 2.7%
6.8 10.0
2 days ago 3 days ago
Rust 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.

once_self_cell

Posts with mentions or reviews of once_self_cell. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-11.
  • Ouroboros is also unsound
    3 projects | /r/rust | 11 Jun 2023
    This issue says "Migrate code to use self_cell instead." That page says "It has undergone community code review from experienced Rust users." Looking at the review, issues were found and fixed earlier on, but my interpretation of the end of the thread is more that folks stopped responding with concerns, so confidence is now assumed but still not proven. The same was true of most (all?) other crates trying to solve the same problem, until enough people did find the unsoundness holes unique to each crate.
  • Announcing self_cell version 1.0
    2 projects | /r/rust | 29 May 2023
    I've come across the zip example bevor, and even considered adding support for mutable access to the owner here https://github.com/Voultapher/self_cell/pull/36. See the last comment why I decided not to pursue this. Looking at the specific example, really what is the purpose of storing the lazy ZipReader result? IMO that's bit of bad design on the part of the zip crate. The stdlib APIs consume reader, allowing you to abstract over creation logic. If what you need to store, needs further pre-processing, why not pull that out? Specifically here, what is the point of having a self-referential struct that contains an owner ZipArchive that you will no longer be allowed to mutate. And a lazy reader ZipReader that you can then use to really read the file? If you need to abstract over the construction logic you could return (ZipArchive, Box ZipReader>), if you want to return the content you can return (ZipArchive, Vec) allowing further use of ZipArchive.
  • Unsoundness in owning_ref
    10 projects | /r/rust | 26 Jan 2022
    As the author of self_cell I can attest, that writing unsafe lifetime abstractions is exceedingly tricky and you will get it wrong, repeatedly. I'm not sure these problems in owning_ref can be solved without a serious overhaul of the API. For one it tracks too little information, both ouroboros and self_cell independently reached the conclusion that you have to mark the dependent as either covariant or not_covariant over the owner lifetime, and prohibit ever leaking direct references if the dependent is not_covariant. But the fun doesn't stop there, if the owner can have a lifetime too, things get extra tricky. If you want to dive deeper take a look at this discussion https://github.com/Voultapher/self_cell/pull/29.
  • My experience crafting an interpreter with Rust
    2 projects | /r/rust | 22 Jul 2021
    Grouping the source and derived AST in the same struct without leaking the lifetime is something that greatly helped keep the API sane. Shameless plug https://github.com/Voultapher/self_cell
  • Safe-to-use proc-macro-free self-referential structs in stable Rust.
    4 projects | /r/rust | 13 Mar 2021
    Thanks, I'll incorporate that into https://github.com/Voultapher/once_self_cell/issues/5

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-05-02.
  • Rust: Box Is a Unique Type
    7 projects | news.ycombinator.com | 2 May 2024
    >While we are many missing language features away from this being the case, the noalias case is also magic descended upon box itself, with no user code ever having access to it.

    I'm not sure why the author thinks there's magic behind Box. Box is not a special case of `noalias`. Run this snippet with miri and you'll see the same issue: https://play.rust-lang.org/?version=stable&mode=debug&editio...

    `Box` _does_ have an expectation that its inner pointer is not aliased to another Box (even if used for readonly operations). See: https://github.com/rust-lang/miri/issues/1800#issuecomment-8...)

  • Bytecode VMs in Surprising Places
    9 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.