Skip to content

Commit

Permalink
Updated the WAST version (#106)
Browse files Browse the repository at this point in the history
  • Loading branch information
wycst authored Jul 2, 2024
1 parent 64083f7 commit f75b309
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ The results here-below were computed on January the 30th, 2024 with the followin
| tapestry | 5.8.3 |
| underscore | 1.97 |
| yasson | 3.0.3 |
| wast | 0.0.12.1 |
| wast | 0.0.13.2 |

[All graphs and sheets are available in this google doc.][spreadsheet]

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ dependencies {
// QuickBuffers
implementation group: 'us.hebi.quickbuf', name: 'quickbuf-runtime', version: '1.4'
// wast
implementation group: 'io.github.wycst', name: 'wast', version: '0.0.12.1'
implementation group: 'io.github.wycst', name: 'wast', version: '0.0.13.2'

// Test
testImplementation group: 'junit', name: 'junit', version: '4.13.2'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,6 +153,6 @@ public Object quickbuf_json() throws Exception {
@Benchmark
@Override
public Object wast() throws Exception {
return io.github.wycst.wast.json.JSON.parseObject(JSON_SOURCE().nextString(), JSON_SOURCE().pojoType(), ReadOption.UseJDKDoubleParser);
return io.github.wycst.wast.json.JSON.parseObject(JSON_SOURCE().nextString(), JSON_SOURCE().pojoType());
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ public Object quickbuf_json() throws Exception {
@Override
public Object wast() throws Exception {
ByteArrayOutputStream baos = JsonUtils.byteArrayOutputStream();
io.github.wycst.wast.json.JSON.writeJsonTo(JSON_SOURCE().nextPojo(), baos, WriteOption.WriteDecimalUseToString);
io.github.wycst.wast.json.JSON.writeJsonTo(JSON_SOURCE().nextPojo(), baos);
return baos;
}
}

0 comments on commit f75b309

Please sign in to comment.