semver-trick VS cargo-llvm-lines

Compare semver-trick vs cargo-llvm-lines and see what are their differences.

semver-trick

How to avoid complicated coordinated upgrades (by dtolnay)

cargo-llvm-lines

Count lines of LLVM IR per generic function (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
semver-trick cargo-llvm-lines
15 3
414 372
- -
2.8 7.3
17 days ago 22 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.

cargo-llvm-lines

Posts with mentions or reviews of cargo-llvm-lines. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2021-10-22.
  • Making a Rust crate compile faster [video]
    1 project | /r/rust | 2 Jul 2022
    This is a livestream, the "offline" artefact is a function of that but not the primary one. Jon essentially uses livestreams as exploratory labs / presentations, and even ignoring the regular Q&As audience interaction is both common and commonly useful there — for instance in this one /u/dtolnay suggests something about cargo-llvm-lines as Jon is working with it.
  • 1.56 Compile time is through the roof!?
    7 projects | /r/rust | 22 Oct 2021
    If you want to dig further, I see though that some of this time is spent in codegen (generating LLVM IR) and in LLVM. Maybe something is generating much more IR than before, which then takes a lot of time to process. Another tool is https://github.com/dtolnay/cargo-llvm-lines which shows the number of lines of unoptimized LLVM IR for each of your functions. In general it can be useful to optimize compile times of your project, in this case it might show which area of your code triggers this bug.
  • David Tolnay - thank you
    5 projects | /r/rust | 2 Apr 2021
    cargo llvm-lines, too.

What are some alternatives?

When comparing semver-trick and cargo-llvm-lines you can also consider the following projects:

lang-team - Home of the Rust lang team

rust-quiz - Medium to hard Rust questions with explanations

rust-base64 - base64, in rust

measureme - Support crate for rustc's self-profiling feature

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

async-trait - Type erasure for async trait methods

axum - Ergonomic and modular web framework built with Tokio, Tower, and Hyper

serde - Serialization framework for Rust

cargo-bisect-rustc - Bisects rustc, either nightlies or CI artifacts

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

db-dump - Library for scripting analyses against crates.io's database dumps