Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update README.md #27

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,8 @@
- [`text-size`](https://crates.io/crates/text_size) A library that provides newtype wrappers for `u32` and `(u32, u32)` for use as text offsets
- [`ariadne`](https://crates.io/crates/ariadne) A fancy diagnostics & reporting crate
- [`miette`](https://crates.io/crates/miette) Fancy diagnostic reporting library and protocol for us mere mortals who aren't compiler hackers
- [`lyneate`](https://crates.io/crates/lyneate) A crate for beautiful code underlining and error reporting
- [`lerr`](https://crates.io/crates/lerr) extremely barebones error diagnostics for lang-dev

## Language server protocol

Expand Down Expand Up @@ -319,8 +321,9 @@

## Peephole Optimization

- [`egg`](https://crates.io/crates/egg) Egg is a flexible, high-performance e-graph library
- [`egg`](https://crates.io/crates/egg) Egg is a flexible, high-performance e-graph library
- [`peepmatic`](https://crates.io/crates/peepmatic) A DSL for peephole optimizations and compiler for generating peephole optimizers from them
- [`egglog`](https://crates.io/crates/egglog) Egglog is a language that combines the benefits of equality saturation and datalog. It can be used for analysis, optimization, and synthesis of programs. It is the successor to the popular Rust Library egg.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I wasn't able to find anywhere that egg or egglog use this successor verbiage, so it seems a bit strong to me.
In the Egg README they describe it as

an alternative approach to equality saturation based on Datalog.

So I would suggest something along the lines of
"It provides an alternative approach to the popular Rust Library egg."

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I read it here:
image
I can remove it though

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Aha, was hiding in the Cargo.toml not the README.


## Garbage Collection

Expand Down