From ed316e6eb7f9f575acc0474df87f30909020b112 Mon Sep 17 00:00:00 2001 From: ConnorSkees <39542938+ConnorSkees@users.noreply.github.com> Date: Mon, 3 Feb 2020 08:49:47 -0500 Subject: [PATCH] 2020-02-03 readme --- README.md | 34 ++++++++++++++++++++-------------- 1 file changed, 20 insertions(+), 14 deletions(-) diff --git a/README.md b/README.md index a074f4f..5d65865 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # grass -An implementation of the SASS spec in rust with 0 dependencies +An implementation of the SASS spec in pure Rust To run the official test suite, @@ -13,21 +13,27 @@ cargo b --release ./sass-spec/sass-spec.rb -c './target/release/grass' ``` -2020-01-27 -PASSING: 186 -FAILING: 4907 +``` +2020-02-03 +PASSING: 242 +FAILING: 4851 TOTAL: 5093 +``` -2020-01-20 -PASSING: 143 -FAILING: 4950 -TOTAL: 5093 +``` +2020-01-27 +PASSING: 186 +FAILING: 4907 +TOTAL: 5093 +``` + +``` +2020-01-20 +PASSING: 143 +FAILING: 4950 +TOTAL: 5093 +``` ## Features -`grass` is far from being feature complete! - -Right now, I am focusing on just getting the most basic tests to pass. This is actually very close to being done! -Major tasks (not basic) remaining include builtin functions, control flow, and values. - -I would eventually like to focus heavily on performance and WASM bindings -- two areas that a Rust implementation has an advantage over Dart +The focus right now is just getting the most basic tests to pass.