Thruster VS semver-trick

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

Thruster

A fast, middleware based, web framework written in Rust (by thruster-rs)

semver-trick

How to avoid complicated coordinated upgrades (by dtolnay)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
Thruster semver-trick
8 15
1,043 414
0.8% -
5.6 2.8
about 1 month ago 9 days ago
Rust Rust
MIT License 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.

Thruster

Posts with mentions or reviews of Thruster. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2022-10-25.

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 Thruster and semver-trick you can also consider the following projects:

rocket-auth-login - Authentication and login processing for Rust's Rocket web framework. Demonstrates a working example of how to authenticate users and process login as well as how to handle logging out.

lang-team - Home of the Rust lang team

actix-web - Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.

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

feroxbuster - A fast, simple, recursive content discovery tool written in Rust.

rust-base64 - base64, in rust

hello-world.rs - 🚀Memory safe, blazing fast, configurable, minimal hello world written in rust(🚀) in a few lines of code with few(1092🚀) dependencies🚀

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

yew - Rust / Wasm framework for creating reliable and efficient web applications

rust-quiz - Medium to hard Rust questions with explanations

Rocket - A web framework for Rust.

708 - Parameter passing and initialization