ripasso VS semver-trick

Compare ripasso vs semver-trick and see what are their differences.

ripasso

A simple password manager written in Rust (by cortex)

semver-trick

How to avoid complicated coordinated upgrades (by dtolnay)
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
ripasso semver-trick
2 15
686 414
- -
7.2 2.8
26 days ago 21 days ago
Rust Rust
GNU General Public License v3.0 only 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.

ripasso

Posts with mentions or reviews of ripasso. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-12-29.

semver-trick

Posts with mentions or reviews of semver-trick. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-13.
  • Making Rust supply chain attacks harder with Cackle
    3 projects | news.ycombinator.com | 13 Oct 2023
    Let's say crate B depends on crate A with a pinned dependency, and uses one of its types in a public interface.

    Crate C depends on them both. It now can't bring in updates to A until B does, and when B updates that's a breaking change, so it better bump its major version.

    Take a look at this teick, for example, for foundational crates updating their major version: https://github.com/dtolnay/semver-trick

    Now imagine that being an issue every single patxh update.

  • The module system is too confusing
    1 project | /r/rust | 23 Feb 2023
    Rust modules require a tiny bit more definition up-front, but they neatly decouple the module hierarchy from file layout so you can reorganize code however you like in future, and they support very fine grained control of privacy (such as being able to say pub(super) and pub(crate)). In extreme cases, you can even re-export symbols from one module in another without it counting as a breaking change, so you have even more options for evolving your project without breaking existing consumers. Look at the the semver trick as an example of how powerful this can be and how much freedom it gives library implementors. (And even if you're only a library consumer, wouldn't you rather be consuming libraries by implementors that had more freedom and power?)
  • My first year with Rust: The good, the bad, the ugly
    4 projects | /r/rust | 15 Dec 2022
    A library author concerned about this can use the semver trick. TL;DR: if your current version is 0.42, you can do a 1.0 release, then do a 0.43 release that depends upon your 1.0 release and re-exports all the symbols.
  • Does Rust have any design mistakes?
    12 projects | /r/rust | 23 Aug 2022
    I mean for all the parts of the standard library that do not change, one could presumably use the semver-trick.
  • Rust is hard, or: The misery of mainstream programming
    9 projects | /r/rust | 2 Jun 2022
    The semver trick can help with libraries at least when they go to unify the ecosystem. Release new versions that replicate previous APIs in a compatible way while moving to the standard library implementation.
  • Roadmap
    1 project | /r/rust | 18 Feb 2022
    Because you still run into the problem that's been seen when various important crates upgraded and either didn't use the semver trick or had downstream crates specifying Cargo.toml version requirements too narrowly for it to be effective.
  • The Rust SemVer Trick (2019)
    1 project | news.ycombinator.com | 29 Dec 2021
  • This Year in Embedded Rust: 2021 edition
    8 projects | news.ycombinator.com | 29 Dec 2021
    It's called the "semver-trick" [1].

    [1]: https://github.com/dtolnay/semver-trick

  • The Semver Trick
    1 project | news.ycombinator.com | 24 Dec 2021
  • The chip shortage keeps getting worse. Why can't we just make more?
    2 projects | news.ycombinator.com | 4 Sep 2021
    The JVM is 114MiB on my machine. A near-minimal ggez program in debug mode is about 100MiB,¹ and ggez is small for a Rust application library. When you start getting into the 300s of dependencies (i.e. every time I've ever got beyond a trivial desktop application), you're lucky if your release build is less than 100MiB.

    Sure, I could probably halve that by forking every dependency so they aren't duplicating versions, but that's a lot of work. (It's a shame Rust doesn't let you do conditional compilation based on dependency versions, or this would be a lot easier. As it is, we have to resort to the Semver trick: https://github.com/dtolnay/semver-trick/ — not that many people do that, so it's functionally useless.)

    ¹: I can get it down to around 8MiB with release mode, lto etc., but that significantly increases the build time and only about halves the weight of the intermediate build files.

What are some alternatives?

When comparing ripasso and semver-trick you can also consider the following projects:

rustsec - RustSec API & Tooling

lang-team - Home of the Rust lang team

cargo-deny - ❌ Cargo plugin for linting your dependencies 🦀

cargo-llvm-lines - Count lines of LLVM IR per generic function

rust - Rust language bindings for TensorFlow

rust-base64 - base64, in rust

avr-hal - embedded-hal abstractions for AVR microcontrollers

Thruster - A fast, middleware based, web framework written in Rust

rust-quiz - Medium to hard Rust questions with explanations

serde - Serialization framework for Rust

driver-examples - Rust example programs for many of my hardware device drivers running on STM32F3 Discovery, STM32F103 "Blue Pill", RaspberryPi and micro:bit boards

factoriolab - Angular-based calculator for factory games like Factorio and Dyson Sphere Program