semver-trick VS driver-examples

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

semver-trick

How to avoid complicated coordinated upgrades (by dtolnay)

driver-examples

Rust example programs for many of my hardware device drivers running on STM32F3 Discovery, STM32F103 "Blue Pill", RaspberryPi and micro:bit boards (by eldruin)
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
semver-trick driver-examples
15 3
414 87
- -
2.8 4.8
22 days ago 15 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.

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.

driver-examples

Posts with mentions or reviews of driver-examples. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-08.

What are some alternatives?

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

lang-team - Home of the Rust lang team

bno055 - Device-agnostic Bosch Sensortec BNO055 9-axis Sensor Fusion IMU driver

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

avr-hal - embedded-hal abstractions for AVR microcontrollers

rust-base64 - base64, in rust

rust-by-practice - Learning Rust By Practice, narrowing the gap between beginner and skilled-dev through challenging examples, exercises and projects.

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

sx127x_lora - A platform-agnostic driver for Semtech SX1276/77/78/79 based boards.

rust-quiz - Medium to hard Rust questions with explanations

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

serde - Serialization framework for Rust

dht-sensor - Rust embedded-hal based driver for the DHT11/DHT22 sensor