summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/main.rs2
-rw-r--r--src/msg.rs4
2 files changed, 5 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index b1ee08088..3865e9253 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -5,7 +5,6 @@ extern crate getopts;
extern crate hyper;
extern crate hyper_rustls;
extern crate libc;
-extern crate msg_rs as msg;
extern crate rand;
extern crate remove_dir_all;
extern crate ring;
@@ -31,6 +30,7 @@ mod fs;
mod http_util;
mod isolate;
mod libdeno;
+mod msg;
pub mod ops;
mod permissions;
mod resources;
diff --git a/src/msg.rs b/src/msg.rs
new file mode 100644
index 000000000..8b66704fc
--- /dev/null
+++ b/src/msg.rs
@@ -0,0 +1,4 @@
+#![allow(unused_imports)]
+#![allow(dead_code)]
+use flatbuffers;
+include!(concat!(env!("OUT_DIR"), "/gen/msg_generated.rs"));