sbt-mima-plugin VS trustfall

Compare sbt-mima-plugin vs trustfall and see what are their differences.

sbt-mima-plugin

A tool for catching binary incompatibility in Scala (by lightbend)

trustfall

A query engine for any combination of data sources. Query your files and APIs as if they were databases! (by obi1kenobi)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
sbt-mima-plugin trustfall
2 24
447 2,270
0.4% -
7.5 9.2
8 days ago 4 days ago
Scala 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.

sbt-mima-plugin

Posts with mentions or reviews of sbt-mima-plugin. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-09-07.
  • Semver violations are common, better tooling is the answer
    7 projects | news.ycombinator.com | 7 Sep 2023
    In the Scala ecosystem, MiMa [1] has been in widespread use for years. It automatically checks compatibility for the binary API of a library. Every library with any amount of success uses it. One could say it's the foundation of a stable ecosystem. We also have sbt-version-policy [2] to set it up with minimal configuration (and directly relate it to SemVer).

    More recently, we got tasty-mima [3], which checks compatibility at the type system level, rather than the binary level.

    [1] https://github.com/lightbend/mima

    [2] https://github.com/scalacenter/sbt-version-policy

    [3] https://github.com/scalacenter/tasty-mima

  • sbt/scalatest library or plugin that only re-runs tests for code that changed
    2 projects | /r/scala | 23 Jul 2022
    Off the top of my head, a naive & approximate solution would be to use test coverage to find out which tests test which blocks of code. Then, when a binary, syntactic incompatibility is detected, re-run only these tests captured for that piece of code.

trustfall

Posts with mentions or reviews of trustfall. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-02-20.
  • Planner programming blows my mind
    4 projects | news.ycombinator.com | 20 Feb 2024
    Pleasantly surprised to see Predrag show up as a reviewer, but at the same time not at all surprised:

    - The [Firebase technical screen](https://startupandrew.com/posts/how-firebase-interviewed-sof...) would have been much easier with something like this, as it was Just Another Optimization Problem™. Part of me wants to try it again with Picat!

    - He's doing other very interesting things with programming languages, e.g.: https://github.com/obi1kenobi/trustfall

  • Ask HN: Who wants to be hired? (December 2023)
    26 projects | news.ycombinator.com | 1 Dec 2023
    Email: [email protected]

    Hi, I'm u9g. I'm looking for an internship for either this winter (in a few weeks) or a summer internship!

    Some things I've done:

    I integrated a [query engine for lints](https://github.com/obi1kenobi/trustfall) (and contributed optimizations) into [OXC](https://github.com/oxc-project/oxc) (a new Rust-based Javascript Linter).

    I wrote [several](https://github.com/u9g/money-lens) [toy](https://github.com/u9g/quickquestion/tree/main/extension) languages and syntax highlighting for them.

    I also wrote a [js-to-scheme transpiler](https://github.com/u9g/js2scheme/blob/main/example.js).

    Happy to work on things compiler or database oriented, but also happy to learn something new!

  • Semver violations are common, better tooling is the answer
    7 projects | news.ycombinator.com | 7 Sep 2023
    If you'd like to dig deeper, here are some links:

    - cargo-semver-checks: https://github.com/obi1kenobi/cargo-semver-checks

    - Trustfall query engine, which powers cargo-semver-checks: https://github.com/obi1kenobi/trustfall

    - Trustfall playground, where you can query Rust library APIs in your browser -- for example, "which structs in `itertools` are importable by more than one path": https://play.predr.ag/rustdoc#?f=2&q=*3-Structs-importable-f...

    - 10min conference talk on Trustfall: https://www.hytradboi.com/2022/how-to-query-almost-everythin...

    I'm also giving a talk at P99 CONF in a few months about how Trustfall's new optimizations API made cargo-semver-checks over 2300x faster: https://twitter.com/PredragGruevski/status/16893002495908003...

  • Cargo-semver-checks: Scan your Rust crate for semver violations
    3 projects | news.ycombinator.com | 8 Jul 2023
    No worries!

    Trustfall is even more general than semver actually, one can use it to query any data source -- even HN itself:

    https://play.predr.ag/HackerNews

    Here's a link to that project if you'd like to check it out:

    https://github.com/obi1kenobi/trustfall

    I gave a 10min conference talk on it last year titled "How to query (almost) everything"

    https://www.hytradboi.com/2022/how-to-query-almost-everythin...

  • We created Taxi, and why we felt the need for Another Schema Language
    2 projects | news.ycombinator.com | 16 May 2023
    I've had my eye on Taxi for a while, and it's neat! I agree that the problems it aims to solve are real and painful in real life.

    In my experience, I'm not sure people care about schemas or schema languages — they are just implementation details best left under the hood. This is why in my own work, I started on the query end of the spectrum instead.

    This is why I built Trustfall, a query engine able to query any data source: DBs, APIs, files like PDF, CSV, or JSON, or any combination of those.

    GitHub: https://github.com/obi1kenobi/trustfall

    Playground showing the query "which GitHub/Twitter users comment on HackerNews stories about OpenAI?": https://play.predr.ag/hackernews#?f=1&q=IyBDcm9zcyBBUEkgcXVl...

  • cargo-semver-checks v0.20 and Trustfall v0.4 released — semver-check up to 2354x faster
    3 projects | /r/rust | 24 Apr 2023
  • DuckDB: Querying JSON files as if they were tables
    9 projects | news.ycombinator.com | 3 Mar 2023
  • Speeding up Rust semver-checking by over 2000x
    2 projects | /r/rust | 15 Feb 2023
    Here's an example adapter for querying RSS/Atom feeds. Here's an example adapter for querying the HackerNews APIs. Both projects also include a schema and example queries which you can run.
  • Trustfall: How to Query (Almost) Everything
    1 project | /r/patient_hackernews | 8 Feb 2023
    1 project | /r/hackernews | 8 Feb 2023

What are some alternatives?

When comparing sbt-mima-plugin and trustfall you can also consider the following projects:

mdoc - Typechecked markdown documentation for Scala

cargo-semver-checks-action - A GitHub Action for running cargo-semver-checks

sbt-header - sbt-header is an sbt plugin for creating file headers, e.g. copyright headers

postgrest - REST API for any Postgres database

sbt-revolver - An SBT plugin for dangerously fast development turnaround in Scala

join-monster - A GraphQL to SQL query execution layer for query planning and batch data fetching.

sbt-pack - A sbt plugin for creating distributable Scala packages.

graphql-java - GraphQL Java implementation

sbt-updates - sbt plugin that can check Maven and Ivy repositories for dependency updates

dgs-framework - [Moved to: https://github.com/Netflix/dgs-framework]

sbt-sonatype - A sbt plugin for publishing Scala/Java projects to the Maven central.

genql - Type safe TypeScript client for any GraphQL API