rustig VS suture

Compare rustig vs suture and see what are their differences.

rustig

A tool to detect code paths leading to Rust's panic handler (by Technolution)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
rustig suture
9 14
215 1,268
0.0% -
0.0 5.7
over 2 years ago about 2 months ago
Rust Go
Apache License 2.0 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.

rustig

Posts with mentions or reviews of rustig. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-03-25.
  • Is there something like "super-safe" rust?
    8 projects | /r/rust | 25 Mar 2023
    There is also rustig though it seems quite dead.
  • Is Rust really safe? How to identify functions that can potentially cause panic
    6 projects | /r/rust | 12 Mar 2023
    There’s the rustig tool (https://github.com/Technolution/rustig) that looks for code paths leading to the panic handler. Not sure if it still works though.
  • My thoughts on Rust and C++
    7 projects | /r/rust | 20 Sep 2022
    That's fair. I think I may just be a bit sore that Rustig was allowed to bit-rot and findpanics hasn't seen a commit since 2020.
  • What improvements would you like to see in Rust or what design choices do you wish were reconsidered?
    5 projects | /r/rust | 1 Sep 2022
  • Things I hate about Rust, redux
    5 projects | /r/programming | 10 Mar 2022
    There's Rustig which does it for panics, though it seems unmaintained and uses inspection of the final binary rather than source code/AST inspection.
    7 projects | /r/rust | 10 Mar 2022
    You might be interested in this: https://github.com/Technolution/rustig
  • Three Things Go Needs More Than Generics
    7 projects | news.ycombinator.com | 3 Oct 2021
    > Doesnt Rust have implicit panics on indexing out of bounds?

    It does yes. A fair number of other constructs can panic as well.

    > I wonder if any codebases lint those away.

    Clippy has a lint for indexing so probably.

    For the general case, it's almost impossible unless you're working on very low-level software (embedded, probably kernel-rust eventually) e.g. `std` assumes allocations can't fail, so any allocation will show up as a panic path.

    https://github.com/Technolution/rustig can actually uncover panic paths, but because of the above the results are quite noisy, and while it's possible to uncover bugs thanks to rustig it requires pretty ridiculous amounts of filtering.

  • Linus Torvalds on Rust support in kernel
    6 projects | news.ycombinator.com | 16 Apr 2021
    This comment is strongly confused.

    > [1] https://github.com/Technolution/rustig

    That's a binary analysis tool. It is only approximate, and does not claim to be an accurate analysis like unsafe-checking and typechecking are:

    https://github.com/Technolution/rustig#limitations

    > All paths leading to panic! from one of those functions (whether actually used or not) will be reported.

    It also only works on x86_64 binaries.

    Panics are an ugly leftover from the bad old days before Rust had nice monad-like syntax for Result error-handling (the "?" syntax). It's time for panic to sunset.

suture

Posts with mentions or reviews of suture. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-01.
  • Could I get a code review?
    11 projects | /r/golang | 1 Jun 2023
    This one is highly specialized, but I'm a huge fan of Suture for managing long lived goroutines.
  • [gopulse/pulse] the Golang framework designed to ensure your web services stay alive.
    3 projects | /r/golang | 17 Apr 2023
    In English, your phrasing doesn't come off as a play on words/a reference to the name, so much as it describes a feature of the library. The expectation is, with the description you've given it, the library would handle some form of resilience in service management. I half expected the library to be similar to Suture.
  • Ergo: Erlang/OTP Implemented in Golang
    3 projects | news.ycombinator.com | 28 Jan 2023
    It does not give you a way to reliably track arbitrary goroutines that "this" goroutine (for whatever that may be) wants to track, the way an Erlang process can just "link" to anything it is capable of naming the PID for.

    However, you can construct a reliable mechanism where one goroutine can start another and know whether or not the one it started has failed by using the available primitives, as I did in https://github.com/thejerf/suture . It's an easier problem since there's no cluster and no network that can get in the way. I've also done the exercise for the network case: https://pkg.go.dev/github.com/thejerf/reign#Address.OnCloseN... but that only functions within the network defined by that library because, again, it just isn't arbitrarily possible.

    (I suppose it's relevant to some of my other comments to point out that I've also implemented basically Erlang-style concurrency in Go, with network, but as a relatively idiomatic translation rather than a blind one.)

  • Is there an equivalent to Elixir / GenServer in Go? Trying to create the same request / response pattern with better performance but not sure where to start.
    2 projects | /r/golang | 23 Jan 2023
    If you also want Supervisor-like behavior, take a look at suture.
  • Start an already running service: no error, error, or panic?
    1 project | /r/golang | 2 Jan 2023
    For context, I've been working with similar interfaces for many years through suture.
  • Erlang vs Golang
    2 projects | /r/golang | 13 Nov 2022
    I wrote suture for idiomatically-ported supervisor trees (that is, the ways they differ are deliberately chosen, not accidents), and reign for Go-native cluster-like support. I use suture in almost everything I write. Reign is used on production services but I don't generally use it because I think modern stacks have better options with modern message busses, but it can be useful for porting.
  • Erlang-ish supervisor trees for Go
    1 project | news.ycombinator.com | 13 Jul 2022
  • How “let it fail” leads to simpler code
    3 projects | news.ycombinator.com | 13 Jul 2022
    I think the distinction between expected and unexpected errors can easily fall through the cracks and writing code in a way that an unexpected error doesn’t break everything is quite powerful.

    Golang makes it easy to ignore errors that can be ignored and defer/recover provide a way to implement a way to “let it fail”

    There’s even an implementation of supervisor trees for Go [0] :)

    [0] https://github.com/thejerf/suture

  • Golang vs Elixir protoactor supervision
    2 projects | /r/golang | 26 Jun 2022
    (If you'd like something lighter weight, suture is a supervisor library without a whole lot of other stuff. If you want that other stuff, by all means, go to town.)
  • The method to manage multiple services in a process.
    2 projects | /r/golang | 17 Apr 2022
    This is the primary reason almost every program I write ends up using suture. The restarting is nice when it works, but Go code is often reasonably robust. (Not 100%, but reasonably.) But it's a nice organization principle.

What are some alternatives?

When comparing rustig and suture you can also consider the following projects:

Rust-for-Linux - Adding support for the Rust language to the Linux kernel.

protoactor-go - Proto Actor - Ultra fast distributed actors for Go, C# and Java/Kotlin

bastion - Highly-available Distributed Fault-tolerant Runtime

go101 - An up-to-date (unofficial) knowledge base for Go programming self learning

pwninit - pwninit - automate starting binary exploit challenges

reign - Rewrite Erlang In Go Nicely - a library for mimicking Erlang's mailboxes and clustering

kani - Kani Rust Verifier

ergo - An actor-based Framework with network transparency for creating event-driven architecture in Golang. Inspired by Erlang. Zero dependencies.

gdbstub - An ergonomic, featureful, and easy-to-integrate implementation of the GDB Remote Serial Protocol in Rust (with no-compromises #![no_std] support)

chi - lightweight, idiomatic and composable router for building Go HTTP services