lean4 VS tracing

Compare lean4 vs tracing and see what are their differences.

Our great sponsors
  • WorkOS - The modern identity platform for B2B SaaS
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • SaaSHub - Software Alternatives and Reviews
lean4 tracing
53 52
3,714 4,919
4.7% 2.9%
9.9 8.1
6 days ago 8 days ago
Lean Rust
Apache License 2.0 MIT License
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.

lean4

Posts with mentions or reviews of lean4. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-23.
  • Dafny is a verification-aware programming language
    4 projects | news.ycombinator.com | 23 Apr 2024
    Recently replaced by Lean, though.

    https://github.com/cedar-policy/cedar-spec

    https://lean-lang.org

  • The Mechanics of Proof
    2 projects | news.ycombinator.com | 20 Mar 2024
  • Natural Deduction in Logic (2015)
    1 project | news.ycombinator.com | 11 Jan 2024
  • The Wizardry Frontier
    2 projects | /r/rust | 10 Dec 2023
    Nice read! Rust has pushed, and will continue to push, the limits of practical, bare metal, memory safe languages. And it's interesting to think about what's next, maybe eventually there will be some form of practical theorem proving "for the masses". Lean 4 looks great and has potential, but it's still mostly a language for mathematicians. There has been some research on AI constructed proofs, which could be the best of both worlds because then the type checker can verify that the AI generated code/proof is indeed correct. Tools like Kani are also a step forward in program correctness.
  • Lean4 helped Terence Tao discover a small bug in his recent paper
    10 projects | news.ycombinator.com | 27 Oct 2023
    Yeah, I believe they said intend for it to be used as a general purpose programming language. I used it to complete Advent of Code last year.

    There are some really interesting features for general purpose programming in there. For example: you can code updates to arrays in a functional style (change a value, get a new array back), but if the refcount is 1, it updates in place. This works for inductive types and structures, too. So I was able to efficiently use C-style arrays (O(1) update/lookup) while writing functional code. (paper: https://arxiv.org/abs/1908.05647 )

    Another interesting feature is that the "do" blocks include mutable variables and for loops (with continue / break / return), that gets compiled down to monad operations. (paper: https://dl.acm.org/doi/10.1145/3547640 )

    And I'm impressed that you can add to the syntax of the language, in the same way that the language is implemented, and then use that syntax in the next line of code. (paper: https://lmcs.episciences.org/9362/pdf ). There is an example in the source repository that adds and then uses a JSX-like syntax. (https://github.com/leanprover/lean4/blob/master/tests/playgr... )

  • A Linguagem Lua completa 30 anos!
    3 projects | dev.to | 17 Oct 2023
  • Lean 4.0
    1 project | /r/hypeurls | 9 Sep 2023
  • Lean 4.0.0, first official lean4 release
    10 projects | news.ycombinator.com | 7 Sep 2023
  • Looking to start a new community for people who want to use code for everything
    2 projects | /r/finality | 15 Aug 2023
    My latest inspiration to use code to a) replace my video editor, b) learn the basics of EDM production and c) understand a few topics in higher maths. This might sound very strange given there are specialised tools for these jobs. There's iMovie / Adobe Premier for video, there's GarageBand and FL studio for music and old good pen and pencil for math proofs. But these tools have three big limitations. First they have a lot of idiosyncratic learning, you have to spend quite some time getting used to these tools and my experience is that this time is quite upsetting. In contrast, you only have to learn to code one, maybe spend a few hours getting used to the syntax of another language. I'm not sure if that's true for most people but it was true for me using the tools mentioned above and wanted a place to discuss and see other people ideas and experiments. The second issue is that all these custom-made tools, are not composing easily. I can't search for all math proofs that used a single theorem. I can't create a plugin for iMovie and apply it to all my videos. I can't pick easily pick a rhythm from the internet and build upon for fun. There's also the issue of costs and version control, all tools I'm using today are open source and my work is stored in my repositories. This way I can create branches and test my ideas and I'm also confident that I can work in these projects in years.
  • In Which I Claim Rich Hickey Is Wrong
    5 projects | news.ycombinator.com | 24 Jul 2023
    Dafny and Whiley are two examples with explicit verification support. Idris and other dependently typed languages should all be rich enough to express the required predicate but might not necessarily be able to accept a reasonable implementation as proof. Isabelle, Lean, Coq, and other theorem provers definitely can express the capability but aren't going to churn out much in the way of executable programs; they're more useful to guide an implementation in a more practical functional language but then the proof is separated from the implementation, and you could also use tools like TLA+.

    https://dafny.org/

    https://whiley.org/

    https://www.idris-lang.org/

    https://isabelle.in.tum.de/

    https://leanprover.github.io/

    https://coq.inria.fr/

    http://lamport.azurewebsites.net/tla/tla.html

tracing

Posts with mentions or reviews of tracing. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-10-31.
  • Decrusting the tracing crate [video] by Jon Gjengset
    1 project | news.ycombinator.com | 10 Feb 2024
    The video description is as follows:

    In this stream, we peel back the crust on the tracing crate — https://github.com/tokio-rs/tracing/ — and explore its interface, structure, and mechanisms. We talk about spans, events, their attributes and fields, and how to think about them in async code. We also dig into what subscribers are, how they pick up events, and how you can construct your own subscribers through the layer abstraction. For more details about tracing, see https://docs.rs/tracing/latest/tracing/.

  • Vendor lock-in is in the small details
    7 projects | news.ycombinator.com | 31 Oct 2023
    > What's been your biggest issues around ergonomics/amenities for OpenTelemetry?

    I can't speak generally, but in the Rust ecosystem the various crates don't play well together. Here's one example: <https://github.com/tokio-rs/tracing/issues/2648> There are four crates involved (tracing-attributes, tracing-opentelemetry, opentelemetry, and opentelemetry-datadog) and none of them fit properly into any of the others.

  • Grimoire - A recipe management application.
    7 projects | /r/rust | 5 Oct 2023
    The tracing (logging) mechanism in an asynchronous codebase (tracing).
  • How easy is it to swap out your async runtime?
    2 projects | /r/rust | 10 Jul 2023
    Tracing is Tokio's alternative for async code.
  • Hey Rustaceans! Got a question? Ask here (27/2023)!
    9 projects | /r/rust | 3 Jul 2023
    At a technical level, in Rust, both [tracing]https://crates.io/crates/tracing) and log are entire ecosystems (though for the latter at least there's also third party logging frameworks), and there's at least a bridge from log to tracing.
  • How can I write a tracing subscriber that saves to a database?
    1 project | /r/rust | 3 Jul 2023
    I am using https://github.com/tokio-rs/tracing for logging purposes in my application. I would like to develop a feature wherein logs should be saved to a database table (via sea-orm). Something similar is this, but it does not solve my needs fully.
  • A locking war story
    2 projects | /r/rust | 1 Jun 2023
    I've used the tracing infrastructure with tracing_flame to profile some hot paths in async code: https://github.com/tokio-rs/tracing/tree/master/tracing-flame
  • I was wrong about rust
    4 projects | /r/rust | 20 May 2023
    Oh nice! IIRC when I checked, it was the Unicode tables that smashed the code size. I recently hit the same issue with the tracing crate, where a crate feature (for env var filtering) pulled in regex and my binary was suddenly 1MB bigger.
  • Debugging and profiling embedded applications.
    8 projects | /r/rust | 30 Mar 2023
    I know about tools such as tracing, jaeger or tracy. While having a complete tracing could be a potential solution, these tools don't work with no_std.
  • Custom Axum Logging for Routes?
    2 projects | /r/rust | 17 Mar 2023
    tracing by itself only outputs log data, you need to consume them in a subscriber, the tracing-subscriber crate exists for this. (example)

What are some alternatives?

When comparing lean4 and tracing you can also consider the following projects:

z3_tutorial - Jupyter notebooks for tutorial on the Z3 SMT solver

log4rs - A highly configurable logging framework for Rust

coq - Coq is a formal proof management system. It provides a formal language to write mathematical definitions, executable algorithms and theorems together with an environment for semi-interactive development of machine-checked proofs.

slog - Structured, contextual, extensible, composable logging for Rust

Agda - Agda is a dependently typed programming language / interactive theorem prover.

env_logger - A logging implementation for `log` which is configured via an environment variable.

ATS-Postiats - ATS2: Unleashing the Potentials of Types and Templates

log - Logging implementation for Rust

ts-sql - A SQL database implemented purely in TypeScript type annotations.

opentelemetry-rust - The Rust OpenTelemetry implementation

roc - A fast, friendly, functional language. Work in progress!

vector - A high-performance observability data pipeline.