Rust in Illumos

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • examples

    Examples for Bazel (by bazelbuild)

    Here you go!

    https://github.com/bazelbuild/examples/tree/main/rust-exampl...

    I wrote all of those examples and contributed them back to Bazel because I've been there...

    Personally, I prefer the Bazel ecosystem by a wide margin over buck2. By technology alone, buck2 is better, but as my requirements were growing, I needed a lot more mature rule sets such as rules OCI to build and publish container images without Docker and buck2 simply doesn't have the ecosystem available to support complex builds beyond a certain level. It may get there one day.

  • SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  • eos

    A build tool for illumos. (by oxidecomputer)

    I'm not hugely excited about Bazel, or really any of the more complex build tools made either directly for, or in the image of, the large corporate monorepo tooling.

    Right now we have decades of accumulated make stuff, with some orchestrating shell. It's good in parts, and not in others. What I would ideally like is some bespoke software that produces a big Ninja file to build literally everything. A colleague at Oxide spent at least a few hours poking at a generator that might eventually suit us, and while it's not anywhere near finished I thought it was a promising beginning I'd like us to pursue eventually!

    https://github.com/oxidecomputer/eos

  • illumos-installer

    > for one would love to have people help me with the new Installer[0] and with the package Forge[1]

    Those repos really need some basic high-level information about what they are and how they work, the Forge doesn't even have a README.

    [0] https://github.com/Toasterson/illumos-installer

    [1] https://github.com/toasterson/forge

  • forge

    > for one would love to have people help me with the new Installer[0] and with the package Forge[1]

    Those repos really need some basic high-level information about what they are and how they work, the Forge doesn't even have a README.

    [0] https://github.com/Toasterson/illumos-installer

    [1] https://github.com/toasterson/forge

  • diesel

    A safe, extensible ORM and Query Builder for Rust

    Here is another thing worth sharing. Database integration tests on Bazel used to be difficult. Ultimately I've found an elegant solution:

    https://github.com/diesel-rs/diesel/blob/master/examples/pos...

    The parallel testing with dangling transactions isn't Diesel or Postgres specific. You can do the same with pure SQL and any relational DB that supports transactions.

    For CI, BuildBuddy can spin up Docker in a remote execution host, then you write a custom util that tests if the DB container is already running and if not starts one, out that in a test and then let Bazel execute all integration tests in parallel. For some weird reasons, all tests have to be in one file per insolated remote execution host, so I created one per table.

    Incremental builds that compile, tests, build and publish images usually complete in about one minute. That's thanks to the 80 Core BuildBuddy cluster with remote cache.

    GitHub took about an hour back in April when the repo was half in size.

    There is real gain in terms of developer velocity.

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Good Practices Using Node.js + Sequelize with TypeScript

    1 project | dev.to | 26 Jul 2024
  • Show HN: Riza – Safely run untrusted code from your app

    1 project | news.ycombinator.com | 30 Apr 2024
  • Give Up Sooner

    1 project | dev.to | 13 Mar 2024
  • ORMs are nice but they are the wrong abstraction

    7 projects | news.ycombinator.com | 1 Feb 2024
  • People who use rust and postgres in production along with RDS proxy, what do you do?

    1 project | /r/rust | 15 Nov 2023