diff options
author | Mihal Malostanidis <qm3ster@gmail.com> | 2018-08-03 18:21:04 +0300 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-08-03 12:15:52 -0400 |
commit | d15d334c24c515758db3a5438c167913f1fc5ffb (patch) | |
tree | b7888fa1a06ef87f412d5099be9d34f5b1bebd59 | |
parent | 2830023f658c146af114686b1d79549ed2e7d883 (diff) |
Replace protobuf with flatbuffer
-rw-r--r-- | Roadmap.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Roadmap.md b/Roadmap.md index e88949895..96bccfbd8 100644 --- a/Roadmap.md +++ b/Roadmap.md @@ -132,7 +132,7 @@ const char* deno_last_exception(Deno* d); There are three layers of API to consider: * L1: the low-level message passing API exported by libdeno (L1), -* L2: the protobuf messages used internally (L2), +* L2: the flatbuffer messages used internally (L2), * L3: the final "deno" namespace exported to users (L3). ### L1 @@ -176,7 +176,7 @@ function main() { ### L2 -https://github.com/denoland/deno/blob/master/msg.proto +https://github.com/denoland/deno/blob/master/src/msg.fbs ### L3 |