steel VS nomicon

Compare steel vs nomicon and see what are their differences.

nomicon

The Dark Arts of Advanced and Unsafe Rust Programming (by rust-lang)
Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
steel nomicon
9 87
848 1,685
- 3.4%
9.0 5.5
7 days ago 22 days ago
Rust CSS
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.

steel

Posts with mentions or reviews of steel. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-03-30.
  • Helix: Release 24.03 Highlights
    5 projects | news.ycombinator.com | 30 Mar 2024
    I absolutely don't mind the plugin system being a Scheme. It's a plugin for a text editor, and Steel(https://github.com/mattwparas/steel) seems to be a lot less of a maintenance burden than WASM plugins(besides that I find the WASM tooling to be extremely complex).

    But besides all that, Helix learned be that I don't need fancy plugins or endless finicking with config files and toolchains. Using a combination of other tools, like yazi and lazygit, helps me not only inside my editor but outside of it as well. And Kakoune does this even better. In that regard it has been a real eye-opener and refreshing. The downside is, it's hard to go back to other editors!

  • Steel – An embeddable and extensible Scheme dialect
    1 project | /r/programming | 5 Dec 2023
  • Steel – An embedded scheme interpreter in Rust
    13 projects | news.ycombinator.com | 3 Dec 2023
    Basically the differences are in the concepts you'll use to write code. Lisps themselves are very different from each other, but just like the languages you're used to, lisps have standard libraries that can be called, and those building blocks can be used to build applications or whatever else. In this case specifically, Steel provides the facility to call Rust functions within a Steel program: https://github.com/mattwparas/steel.

    So, although I haven't used Steel, it looks like the advantage you'd get from using it is the opportunity to take advantage of features it provides like transducers and contracts, which are feature common to other Lisps as well.

    So, just like choosing any other language, it boils down to a series of tradeoffs.

  • What’s everyone working on this week (19/2023)?
    15 projects | /r/rust | 8 May 2023
    I've been adding my language steel as the plugin language for helix. There is a lot of discussion around what the plugin system will look like for helix and I figured I'd give it a shot since steel was designed originally for embedding. So far its working pretty well, it turns helix into emacs (without the nearly 50 years of development, so not quite as good). I'm reasonably confident the changes won't be accepted upstream (my language is a scheme but I am the only developer at the moment), but even if not it is a really fun experiment. Hoping that it can be used as a basis for whatever plugin system they eventually land on. An example of what configuration would look like:
  • What’s everyone working on this week (7/2023)?
    6 projects | /r/rust | 13 Feb 2023
    Working on automatic doc generation for steel. I've been procrastinating building this out for a while - some of the easy cases are really easy, while the hard cases are definitely not easy.
  • What's everyone working on this week (6/2023)?
    13 projects | /r/rust | 6 Feb 2023
    I'm working on steel, an embedded scheme like programming language. I have lofty goals of eventually adding a JIT and making it viable as a standalone language, but for now its just about as fast as python, and makes for fairly pleasant embedded scripting. Recently added modules and dylibs, and am working on getting documentation into a better place so that adding more libraries becomes easier. I've written a functioning slack bot in it, which is pretty fun, eventually want to make a discord bot as well out of it just to stress test it a bit
  • Guile Steel: a proposal for a systems Lisp
    8 projects | news.ycombinator.com | 11 Jul 2022

nomicon

Posts with mentions or reviews of nomicon. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-07.
  • [Media] I'm comparing writing a double-linked list in C++ vs with Rust. The Rust implementation looks substantially more complex. Is this a bad example? (URL in the caption)
    6 projects | /r/rust | 7 Dec 2023
    it’s even written by the same person that wrote the Nomicon (the guide to the dark arts of unsafe)
  • Rust books to read
    2 projects | /r/rust | 23 Jun 2023
    If you want to dive deeper you can always have other options but now there are concrete cases, if you want to do low level thing https://doc.rust-lang.org/nomicon/ while if you want multi thread/concurrency stuff https://marabos.nl/atomics/ . There are many many books so you will have to point yourself to what you want
  • Thread-shared boolean flag
    1 project | /r/rust | 23 Jun 2023
    Nonononono. SeqCst is the most error prone memory order: https://github.com/rust-lang/nomicon/issues/166
  • [Media] Hashmap behaviour inside a loop due to lifetime issue
    1 project | /r/rust | 22 Jun 2023
    Hope this helps. For more details, see the Rustonomicon. I referenced the subtyping chapter here extensively.
  • Unsafe Rust
    2 projects | /r/rust | 15 Jun 2023
    Nice video! Glad I could help out. This stuff is hard, and I'm still learning a lot about it myself even years later. The Rustonomicon is a great read if you haven't already.
  • Stepping up the YAML engineer game
    2 projects | /r/devops | 25 May 2023
    Have you got a moment to read through the good book , after reading through this perhaps try the Rustonomicon.
  • Questions about ownership rule
    2 projects | /r/rust | 23 May 2023
  • CppCon 2022 Best Practices Every C++ Programmer Needs to Follow – Oz Syed
    1 project | news.ycombinator.com | 19 May 2023
    That is not what UB means. Undefined Behaviour is behaviour that the compiler is allowed to assume will never happen, and which can consequently cause miscompilations due to optimisation passes gone wrong if it does in fact occur in the source code.

    It's true that Rust does not have a written specification that clearly delineates what is and isn't UB in a single place. But:

    1. UB is impossible in safe code (modulo bugs in unsafe code)

    2. There are resources such as the Rustinomicon (https://doc.rust-lang.org/nomicon/) that provide a detailed guide on what is and isn't allowed in unsafe code.

    In practice, it's much easier to avoid UB in Rust than it is in C++.

  • How to write deserializer for custom binary protocol?
    2 projects | /r/rust | 13 May 2023
    However, this is a wide topic out of scope for a Reddit comment, so maybe just read the Rustonomicon. It explains everything about data handling in Rust.
  • Performance critical ML: How viable is Rust as an alternative to C++
    4 projects | /r/rust | 2 May 2023
    The ownership model & borrow checker makes rust a bit of an awkward language in which to write complex data structures like trees and graphs. It can be done - since you can always use raw pointers & unsafe code when you absolutely need to to treat rust like C. But the language fights you, and the community can get a bit moralistic about this sort of thing. The rust nomicon is a fantastic resource for learning the limits of the borrow checker, and where and how to use unsafe code correctly. You will need unsafe less than you think you will, but sometimes you will have no choice.

What are some alternatives?

When comparing steel and nomicon you can also consider the following projects:

freya - Native GUI library for 🦀 Rust powered by 🧬 Dioxus and 🎨 Skia.

book - The Rust Programming Language

schemetran

mdBook - Create book from markdown files. Like Gitbook but implemented in Rust

astro-float - Arbitrary precision floating point numbers library

rust-ffmpeg - Safe FFmpeg wrapper.

tesseract-wasm - JS/WebAssembly build of the Tesseract OCR engine for use in browsers and Node

Theseus - Theseus is a modern OS written from scratch in Rust that explores 𝐢𝐧𝐭𝐫𝐚𝐥𝐢𝐧𝐠𝐮𝐚𝐥 𝐝𝐞𝐬𝐢𝐠𝐧: closing the semantic gap between compiler and hardware by maximally leveraging the power of language safety and affine types. Theseus aims to shift OS responsibilities like resource management into the compiler.

websurfx - :rocket: An open source alternative to searx which provides a modern-looking :sparkles:, lightning-fast :zap:, privacy respecting :disguised_face:, secure :lock: meta search engine

Exercism - website - The codebase for Exercism's website.

rust-s3-async-ffi - Asynchronous streaming of AWS S3 objects in C and C++ powered by rust-s3

miri - An interpreter for Rust's mid-level intermediate representation