Skip to content

Commit 7fd1176

Browse files
committed
Fix support matrix data
1 parent 98cfaaf commit 7fd1176

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

internal/src/main.ml

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,15 +89,16 @@ let all_yes = {
8989
json_repr_object = Yes;
9090
json_adapter = Yes;
9191
imports = Yes;
92-
binary_serialization = No;
92+
binary_serialization = Yes;
9393
open_enums = Yes;
9494
}
9595

9696
(* The data. Each entry is (display name, support record). Column order in
9797
the output matches the order here. *)
9898
let languages : (string * lang_support) list = [
9999
"atdml (OCaml)", { all_yes with
100-
open_enums = No;
100+
open_enums = Planned;
101+
binary_serialization = No;
101102
};
102103
"atdgen (OCaml)", { all_yes with
103104
imports = No;
@@ -107,38 +108,44 @@ let languages : (string * lang_support) list = [
107108
wrap = Planned;
108109
json_adapter = Planned;
109110
open_enums = Planned;
111+
binary_serialization = No;
110112
};
111113
"atdts (TypeScript)", { all_yes with
112114
json_adapter = Planned;
113115
open_enums = Planned;
116+
binary_serialization = No;
114117
};
115118
"atdj (Java)", { all_yes with
116119
wrap = Planned;
117120
json_repr_object = Planned;
118121
json_adapter = Planned;
119122
imports = Planned;
120123
open_enums = Planned;
124+
binary_serialization = No;
121125
};
122126
"atds (Scala)", { all_yes with
123127
wrap = Planned;
124128
json_repr_object = Planned;
125129
json_adapter = Planned;
126130
imports = Planned;
127131
open_enums = Planned;
132+
binary_serialization = No;
128133
};
129134
"atdd (Dart)", { all_yes with
130135
doc_comments = Planned;
131136
json_repr_object = Planned;
132137
json_adapter = Planned;
133138
imports = Planned;
134139
open_enums = Planned;
140+
binary_serialization = No;
135141
};
136142
"atdcpp (C++)", { all_yes with
137143
doc_comments = Planned;
138144
json_repr_object = Planned;
139145
json_adapter = Planned;
140146
imports = Planned;
141147
open_enums = Planned;
148+
binary_serialization = No;
142149
};
143150
]
144151

0 commit comments

Comments
 (0)