Skip to content

Commit f75b309

Browse files
authored
Updated the WAST version (#106)
1 parent 64083f7 commit f75b309

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ The results here-below were computed on January the 30th, 2024 with the followin
8383
| tapestry | 5.8.3 |
8484
| underscore | 1.97 |
8585
| yasson | 3.0.3 |
86-
| wast | 0.0.12.1 |
86+
| wast | 0.0.13.2 |
8787

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

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ dependencies {
9999
// QuickBuffers
100100
implementation group: 'us.hebi.quickbuf', name: 'quickbuf-runtime', version: '1.4'
101101
// wast
102-
implementation group: 'io.github.wycst', name: 'wast', version: '0.0.12.1'
102+
implementation group: 'io.github.wycst', name: 'wast', version: '0.0.13.2'
103103

104104
// Test
105105
testImplementation group: 'junit', name: 'junit', version: '4.13.2'

src/main/java/com/github/fabienrenaud/jjb/databind/Deserialization.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,6 +153,6 @@ public Object quickbuf_json() throws Exception {
153153
@Benchmark
154154
@Override
155155
public Object wast() throws Exception {
156-
return io.github.wycst.wast.json.JSON.parseObject(JSON_SOURCE().nextString(), JSON_SOURCE().pojoType(), ReadOption.UseJDKDoubleParser);
156+
return io.github.wycst.wast.json.JSON.parseObject(JSON_SOURCE().nextString(), JSON_SOURCE().pojoType());
157157
}
158158
}

src/main/java/com/github/fabienrenaud/jjb/databind/Serialization.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public Object quickbuf_json() throws Exception {
187187
@Override
188188
public Object wast() throws Exception {
189189
ByteArrayOutputStream baos = JsonUtils.byteArrayOutputStream();
190-
io.github.wycst.wast.json.JSON.writeJsonTo(JSON_SOURCE().nextPojo(), baos, WriteOption.WriteDecimalUseToString);
190+
io.github.wycst.wast.json.JSON.writeJsonTo(JSON_SOURCE().nextPojo(), baos);
191191
return baos;
192192
}
193193
}

0 commit comments

Comments
 (0)