From 293677f7c96a54db530b569e1ac054d9cd6ca83c Mon Sep 17 00:00:00 2001 From: Aki Date: Sat, 30 Sep 2023 14:42:21 +0200 Subject: [PATCH] Update readme with new crates --- README.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a13f7a3e..e55c7652 100644 --- a/README.md +++ b/README.md @@ -9,8 +9,10 @@ Sonatina is really early stage in development, so do NOT use it for production! `sonatina` consists of several crates. * `codegen`: The main crate of `sonatina`, providing builder for IR modules and functions, optimization passes, instruction selection DAG, and binary code emitting. * `filecheck`: Provides test runner for `filecheck` and test fixtures. -* `parser`: Parser for `sonatina` IR, this is mainly for `filecheck` test. +* `interpreter`: Interpreter for `sonatina` IR, this is mainly for testing transformation passes. +* `ir`: `sonatina` intermediate representation. * `object`: Provides abstract object file format for linker. +* `parser`: Parser for `sonatina` IR, this is mainly for `filecheck` test. * `triple`: Provides target triple for smart contracts. ## TODO